forked from Axosoft/learn-git-with-gitkraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (98 loc) · 1.36 KB
/
style.css
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
/* orange: #E65425
yellow: #EFEEC5
green: #20968b
black: 0B161D */
body {
font-family: 'Lato';
font-size: 12px;
background-color: #0B161D;
}
header {
height: 10vh;
background-color: #20968b;
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: 10vh;
padding: 4rem;
text-align: center;
color: #EFEEC5;
}
ul {
margin: 1rem;
list-style: circle;
}
li {
font-size: 1.5rem;
margin: 0.5rem;
}
main {
position: relative;
background-color: #eee;
top: 10vh;
padding: 4rem;
}
h1 {
text-align: center;
font-size: 3.5rem;
}
h2 {
font-size: 2.5rem;
padding: .5rem;
}
.row {
display: flex;
margin: 2rem;
justify-content: center;
align-items: center;
}
.left {
width: 40vw;
text-align: left;
}
.left p {
max-width: 35vw;
}
.right {
width: 25vw;
}
.about {
display: flex;
margin: 2rem;
justify-content: center;
align-items: center;
}
.bio-left {
width: 25vw;
}
.bio-right {
width: 40vw;
}
span {
font-size: 1.5rem;
margin: 1rem;
}
p {
font-size: 1.5rem;
padding: .5rem;
line-height: 2rem;
}
img {
width: 20vw;
height: auto;
padding: 0.5rem;
}
footer {
height: 5vh;
position: relative;
top: 10vh;
padding: 5vh 0;
color: #f0EDC5;
}