-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
72 lines (58 loc) · 1012 Bytes
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* Globals */
html {
height: 100%;
text-align: center;
font-family: serif;
background-color: #007affff;
background: url("assets/images/clouds.jpg") center center/cover no-repeat;
}
img {
width: 24px;
height: 24px;
}
h1 {
font-size: 2rem;
display: inline-block;
font-family: Arial, sans-serif;
}
h2 {
font-size: 1.24rem;
margin: 0 auto auto auto;
}
a {
color: #ffffffff;
text-decoration: none;
}
b { font-size: 1.48rem; }
/* Classes and IDs */
.center-vh {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
}
.content {
width: 320px;
padding: 32px;
display: block;
color: #ffffffff;
border-radius: 32px;
background-color: #ffffff00;
}
.button {
padding: 8px;
transition: 0.24s;
border-radius: 8px;
display: inline-block;
box-shadow: 0px 4px 16px 0px #ffffffa3;
}
.button:hover { background-color: #ffffff52; }
#logo {
width: 84px;
height: 84px;
}
#title > * { vertical-align: middle; }
#number {
font-size: 2.24rem;
text-decoration: none;
}