-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
123 lines (107 loc) · 2.02 KB
/
styles.css
File metadata and controls
123 lines (107 loc) · 2.02 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
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
121
122
123
:root {
--flame: #C86440;
}
.header {
padding-top: 4px;
display: flex;
flex-flow: row;
justify-content: space-between;
background-color: #fff;
}
h1 {
font-family: 'Helvetica';
margin-left: 0;
display: flex;
flex-flow: row;
margin-top: 0;
margin-bottom: 0;
padding: 12pt;
padding-top: 16pt;
width: 50%;
color: #000;
background-color: #fff;
}
body, html {
font-family: 'Helvetica';
background-color: var(--background-color);
color: var(--text-color) !important;
margin: 0;
height: 100vh;
}
.content {
display: flex;
flex-flow: column;
flex: 1;
margin-left: auto;
margin-right: auto;
min-height: 100vh;
width: 70vw;
align-self: center;
background-color: #eee;
}
.nav {
background-color: #fff;
/*font-family: 'IBM Plex Mono';*/
display: flex;
flex-flow: row;
padding: 1em;
margin-left: auto;
padding-right: 0;
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #eee;
}
li {
float: left;
}
li a {
display: block;
color: #111;
text-align: center;
padding: 16px 16px;
margin-bottom: -4px;
text-decoration: none;
}
li a:hover {
background-color: #ddd;
}
}
.bio {
display: flex;
flex-flow: row;
padding: 1em;
margin-bottom: -4px;
}
.row {
display: flex;
flex-wrap: wrap;
flex-flow: row;
padding: 0 4px;
}
/* Create four equal columns that sits next to each other */
.column {
flex: 25%;
max-width: 25%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 500px) {
.column {
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 500px) {
.column {
flex: 100%;
max-width: 100%;
}
}