-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (59 loc) · 1.02 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
68
69
70
71
72
/* CSS files add styling rules to your content */
body {
font-family: "Benton Sans", "Helvetica Neue", helvetica, arial, sans-serif;
display: flex;
color: #4e4e4e;
justify-content: center;
height: 100vh;
background: #fefefe;
}
.content {
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 25vh;
}
#title {
font-size: 16px;
padding: 10px;
background: white;
}
path {
stroke-width: 2px;
}
svg {
max-width: 350px;
max-height: 350px;
height: 350px;
margin-top: 10vh;
}
@media(min-width: 320px){
#title {
font-size: 22px;
padding: 16px;
}
}
.hidden {
display: none;
}
.button {
font-size: 14px;
border: 2px solid #d3d3d3;
background: white;
padding: 8px;
transition: .25s box-shadow linear;
}
.button:hover {
box-shadow: 4px 4px turquoise;
}
#start.button:hover {
box-shadow: 4px 4px deeppink;
}
.button:active {
box-shadow: 2px 2px turquoise;
}
#start.button:active {
box-shadow: 2px 2px deeppink;
}