-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
60 lines (52 loc) · 881 Bytes
/
index.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
*{
padding: 0;
margin: 0;
overflow: hidden;
}
#main{
position: relative;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.bg{
position: absolute;
height: 100vh;
}
.cont{
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
}
.buttons{
padding: 1em;
display: flex;
justify-content: center;
}
.buttons a{
text-decoration: none;
}
.bt:hover{
cursor: pointer;
transform: scale(1.1);
transition: ease-in-out 0.2s;
color: grey;
}
.bt{
margin: 1em;
padding: 0.25em;
display: flex;
font-size: 1.25em;
font-weight: bold;
justify-content: center;
background-color: #dd7973;
color: white;
border: solid white 1px;
}
select{
display: flex;
justify-content: center;
align-items: center;
}