-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
54 lines (54 loc) · 977 Bytes
/
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
html{
background: #0f0f0f;
color: white;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
overflow: hidden
}
#wrap{
display: flex;
justify-content: center;
align-items: center;
height: 100vh
}
#clips{
text-align: center;
font-size: 140px;
}
.btn{
transition: color 200ms, background 200ms;
font-family: 'Ubuntu', sans-serif;
font-size: 25px;
width: 100%;
margin-top: 10px;
border: none;
background: #fecb06;
color: #0f0f0f;
padding: 5px
}
.btn:hover{
transition: color 200ms, background 200ms;
background: #0f0f0f;
color: #fecb06;
}
.upgrades{
font-family: 'Ubuntu', sans-serif;
font-size: 25px;
width: 100%;
margin-top: 10px;
}
#ftr{
width: 100%;
position: absolute;
bottom: 0;
}
a{
color: white;
text-decoration: none;
}
#reset{
color: #ff4242
}
.upgrade_clr{
color: #fecb06
}