forked from MLH/localhost-gitkraken
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (86 loc) · 1.18 KB
/
style.css
File metadata and controls
103 lines (86 loc) · 1.18 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
body {
font-family: 'Open Sans';
font-size: 8px;
color: #272727;
}
header {
height: 7.5vh;
background-color: #009FB7;
box-shadow: 0 0.5rem 0.5rem rgba(0,0,0,.1), inset 0 -1px 0 rgba(0,0,0,.1);
display: flex;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 5;
}
section {
position: relative;
top: 7.5vh;
height: 80vh;
text-align: center;
}
ul {
margin: 1rem;
list-style: circle;
}
li {
font-size: 1rem;
margin: 0.5rem;
}
main {
position: relative;
background-color: #e7e7e7;
top: 7.5vh;
border: 1px solid white;
}
h1 {
text-align: center;
font-size: 3rem;
margin: 8vh;
}
h2 {
font-size: 2.5rem;
border: 1px solid black;
}
span {
font-size: 1.5rem;
margin: 1rem;
}
p {
font-size: 1.5rem;
border: 1px solid black;
}
img {
width: 20vw;
height: auto;
margin: 2vw 0;
}
footer {
height: 5vh;
position: relative;
top: 7.5vh;
padding: 5vh 0;
}
.container {
width: 80vw;
margin: 0 auto;
}
.row {
display: flex;
margin: 2rem;
justify-content: center;
}
.left, .right {
width: 35vw;
text-align: left;
}
.about {
display: flex;
}
.bio-left {
width: 30%;
}
.bio-right {
width: 70%;
}