-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathstyles.css
58 lines (53 loc) · 1.13 KB
/
styles.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
body{
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
background-color: #0C134F;
color: #1B9C85;
font-family: 'Audiowide', cursive;
text-align: center;
}
h1{
font-family: 'Black Ops One', cursive;
color: #F9D949;
}
img{
height: 175px;
width: 125px;
margin: 1px;
}
button{
background-color: #F9D949;
border: 1px solid #F9D949;
margin: 23px;
color: #1B9C85;
font-family: 'Audiowide', cursive;
font-weight: 600;
border-radius: 6px;
box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
box-sizing: border-box;
cursor: pointer;
width: 100px;
height: 50px;
font-size: 20px;
padding: 12px 14px;
text-align: center;
text-rendering: geometricprecision;
text-transform: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
vertical-align: middle;
}
button:hover, button:active {
background-color: initial;
background-position: 0 0;
color: #F9D949;
}
button:active {
opacity: .5;
}
p{
font-weight: 600;
}