-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.scss
120 lines (108 loc) · 1.41 KB
/
style.scss
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
---
# keep this front matter for jekyll
---
body {
background-color: #000;
color: #fff;
display: flex;
min-height: 100vh;
flex-direction: column;
margin: 0 auto;
}
header {
width: 100%;
h1 {
@extend p;
color: #FFFF00;
}
p {
padding-left: 10vw;
}
}
nav {
color: #333;
a {
text-decoration: none;
}
ul {
padding: 0;
margin: 0;
background-color: #fff;
padding-left: 10vw;
box-sizing: border-box;
}
li {
list-style-type: none;
display: inline-block;
padding: .5em 1em .5em 0;
}
}
#content {
flex: 1;
width: 80vw;
margin: 0 auto;
padding-top: 1em;
}
a {
color: inherit;
}
ul {
list-style-type: disclosure-closed;
}
p, li {
line-height: 1.5em;
}
table {
border-collapse: collapse;
tr {
th {
@extend td;
background-color: #ffffff;
color: #000000;
}
td {
padding: 10px;
border: 1px solid #fff;
}
}
}
aside {
li {
margin: .5em 0;
}
}
.projects {
text-align: center;
padding: 2rem 4rem;
display: flex;
align-items: center;
a {
text-decoration: none;
&:hover strong {
color: #ff0;
transition-duration: .2s;
}
}
li {
list-style-type: none;
display: inline-block;
flex-grow: 1;
line-height: 100%;
strong {
display: block;
font-size: 2em;
margin-top: 1em;
}
img {
display: block;
margin: 0 auto;
width: auto;
height: 200px;
vertical-align: middle;
}
}
}
footer {
text-align: center;
padding-bottom: 1em;
}