-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
155 lines (123 loc) · 2.08 KB
/
style.css
File metadata and controls
155 lines (123 loc) · 2.08 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
body {
margin: 0px;
background-color: #fafafa;
font-family: 'Roboto Slab', serif;
}
.container {
max-width: 882px;
background-color: white;
background-color: #ffffff;
}
.header {
border-bottom: 2px solid #D5EEFF;
padding: 20px;
margin: 0px;
background-color: #ffffff;
}
.header img {
width: 150px;
display: inline-block;
float: right;
margin-top: 10px;
}
.header h1 {
display: inline-block;
font-family: 'Roboto Slab', serif;
color: black;
font-size: 30px;
font-weight: bolder;
float: right;
margin-right: 10px;
}
.header h2 { display: inline-block;
font-family: 'Roboto Slab', serif;
color: black;
font-size: 15px;
font-weight: bolder;
float: right;
margin-right: 10px;
margin-top: 0px;
margin-left: 450px;
}
.header nav {
float: right;
display: block;
font-family: 'Roboto Slab', serif;
text-decoration: none;
}
.nav ul {
list-style-type: none;
}
.nav li {
display: inline-block;
=
}
.nav li a {
text-decoration: none;
color: #78BBE6;
font-weight: bolder;
}
.nav li a:hover {
border-bottom: 2px solid #0691ce;
padding-bottom: 5px;
}
.main {
height: 100%;
margin: 0px;
padding: 0px;
}
.main .p
{
margin: 10px;
font-family: 'Roboto Slab', serif;
}
.main .prog {
margin-top: 20px;
font-weight: lighter;
}
.banner {
color: white;
text-align: center;
height: 50vh;
/* if you have a 70px navbar => height: calc(100vh - 70px); */
background-size: cover !important;
background-position: bottom;
display: flex;
align-items: center;
justify-content: center;
margin-top: 5px;
}
.banner h1 {
font-size: 50px;
font-weight: bold;
text-shadow: 0px 1px rgba(0, 0, 0, 0.2);
}
.banner p {
font-size: 20px;
font-weight: lighter;
color: #ffffff;
margin-bottom: 20px;
}
.footer {
height: 100px;
border-top: 2px solid #D5EEFF;
margin: 0px;
}
.footer p {
display: inline-block;
margin-top: 60px;
font-family: 'Space Mono', monospace, serif;
color: #0691ce;
font-size: 12px;
}
.footer ul {
list-style-type: none;
float: right;
display: inline-block;
margin-top: 60px;
}
.footer li {
display: inline-block;
margin: 5px;
color: #0691ce;
}