forked from artytrik/JavaScript-Total
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (32 loc) · 616 Bytes
/
style.css
File metadata and controls
36 lines (32 loc) · 616 Bytes
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
@import './public/css/buttons.css';
@import './public/css/code.css';
@import './public/css/footer.css';
@import './public/css/game.css';
@import './public/css/header.css';
@import './public/css/loader.css';
@import './public/css/section.css';
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Source Code Pro', monospace;
font-size: 1em;
text-align: center;
color: #222;
}
body {
max-width: 768px;
min-height: 100vh;
margin: 0 auto;
display: flex;
flex-direction: column;
color: #222;
}
main {
flex: 1;
}
@media (max-width: 648px) {
* {
font-size: 0.95rem;
}
}