forked from github-tools/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
90 lines (74 loc) · 981 Bytes
/
main.scss
File metadata and controls
90 lines (74 loc) · 981 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
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
---
# Main scss file
---
@charset "utf-8";
@import "syntax";
@import "variables";
@import "octicons";
$icon-width: 10rem;
.header {
background-color: $green;
h1 {
padding: 2rem;
}
&.landing {
padding: 12rem 0 20rem 0;
div.icons {
& span.mega-octicon {
width: $icon-width;
font-size: $icon-width * 0.7;
color: $white;
}
}
}
a,
a:visited {
color: $white;
}
}
.footer {
color: lighten($textcolor, 60%);
a,
a:visited {
color: lighten($textcolor, 45%);
}
}
.container {
padding-top: 2rem;
max-width: 70rem;
&.landing {
ul > li > p {
display: inline;
}
}
}
.centered {
text-align: center;
}
html {
color: $textcolor;
min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: darken($orange, 10%);
font-weight: normal;
}
a {
color: $salmon;
}
a:visited {
color: darken($salmon, 10%);
}
ul {
li {
margin-bottom: 0;
p {
margin: 0;
}
}
}