-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (61 loc) · 1.21 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
body{
height: 100vh;
margin: 0;
background-image: url("./background.png");
background-size: cover;
object-fit: contain;
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
}
.menu {
position: absolute;
border-radius: 50%;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 11vh;
}
.menu h1{
color: #130037;
text-align: center;
font-size: 4vh;
margin: 0;
}
.menu h1, label, input, button{
font-family: GameFont;
}
.button_container {
display: flex;
width: 37vh;
justify-content: space-between;
}
.button_container button {
width: 16vh;
height: fit-content;
border-bottom: 0.5vh double #130037;
border-top: none;
border-left: none;
border-right: none;
background: none;
color: #130037;
font-size: 1.7vh;
padding-left: 0vh;
padding-right: 0vh;
}
button:hover {
color: #00d558;
border-color: #00d558;
transition: .3s;
}
button:active{
color: #00d558;
border-color: #00d558;
}
@font-face {
font-family: GameFont;
src: url(./FARRAY.otf);
}