-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
65 lines (49 loc) · 1015 Bytes
/
Copy pathmain.scss
File metadata and controls
65 lines (49 loc) · 1015 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
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
@import 'content';
@import 'normalize';
@import 'formalize';
@import 'variables';
@import 'header';
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
a, p{
font-size: $my-font;
}
body{
background-color: #0E1117
;
}
@media (max-width:1000px) {
.container{
display: grid !important;
grid-template-columns: 1fr !important;
}
.Header-links{
display: none;
}
main{
display: grid;
flex-direction: column;
align-items: center !important;
justify-content: center !important;
}
Section{
display: grid !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;
}
.Main-about{
display: grid;
align-items: center;
justify-content: center;
}
}
.js{
background-color: yellow !important;
}