-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
127 lines (110 loc) · 1.94 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
SPACE SIZE SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 /
80 / 96 / 128
FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 /
36 / 44 / 52 / 62 / 74 / 86 / 98
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
background-color: #001b39;
color: #fff;
}
.heading-primary {
color: #fff;
background-color: #001524;
font-family: 'Press Start 2P', sans-serif;
font-size: 2.8rem;
text-align: center;
padding: 4rem;
margin-bottom: 4rem;
}
.heading-secondary {
color: #ffd35b;
font-family: 'Press Start 2P', sans-serif;
font-size: 2rem;
text-align: center;
margin-bottom: 2rem;
}
.btn {
color: #fff;
width: 18rem;
padding: 1.8rem 2rem;
font-size: 1, 4rem;
font-family: 'Press Start 2P', sans-serif;
text-align: center;
margin: 0 auto;
margin-bottom: 4rem;
cursor: pointer;
background-color: #002f5d;
display: flex;
justify-content: center;
text-transform: uppercase;
}
.btn:hover {
background-color: #033d78;
}
.main {
display: flex;
justify-content: center;
}
.grid {
position: absolute;
background-color: #fff;
width: 564px;
height: 300px;
border: solid black 1px;
margin: 0 auto;
}
.block {
position: absolute;
width: 100px;
height: 20px;
background-color: #e8b423;
}
.user {
position: absolute;
width: 100px;
height: 20px;
background-color: #c39004;
}
.ball {
position: absolute;
width: 20px;
height: 20px;
border-radius: 10px;
background-color: #001524;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 100px;
background-color: #001524;
display: flex;
justify-content: center;
align-items: center;
}
.copyright {
color: #fff;
font-family: 'Press Start 2P', sans-serif;
font-size: 1.2rem;
text-align: center;
margin-top: 4rem;
}
.link {
color: #fff;
text-decoration: none;
cursor: pointer;
}
.hidden {
display: none;
}