-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (68 loc) · 1.21 KB
/
style.css
File metadata and controls
86 lines (68 loc) · 1.21 KB
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
@import url("https://fonts.googleapis.com/css?family=Press+Start+2P");
body {
font-family: "Press Start 2P", sans-serif;
-webkit-font-smoothing: antialiased;
background-color: #111011;
color: white;
margin: 0;
}
a {
text-decoration: none;
color: lime;
}
a:hover {
color: lime;
}
#nescss > .container {
max-width: 1000px;
margin: 0 auto;
margin-top: 100px;
}
.about h1 {
font-size: 25px;
}
.about .content {
max-width: 617px;
}
.about .content p {
color: white;
font-size: 14px;
}
.about .content p span {
color: lime;
}
footer .container-nav {
margin: 0 auto;
align-items: baseline;
}
footer .container-nav .nav-brand {
margin-right: auto;
}
footer .container-nav .nav-brand h1 {
font-size: 10px;
}
footer .container-nav .nav-brand p {
font-size: 14px;
}
footer .container-nav .nav-brand a {
text-decoration: none;
}
footer .container-nav .social-buttons {
margin-left: auto;
}
footer .container-nav .nav-brand h2 {
font-size: 10px;
}
footer .container-nav .social-buttons .share {
text-align: center;
/* margin-top:5px; */
}
@media screen and (max-width: 768px) {
body {
margin: 2rem 2rem;
padding: 0;
}
#nescss > .container {
margin-top: 50px;
}
}