-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.css
65 lines (55 loc) · 896 Bytes
/
example.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
html, body {
overflow-y: hidden;
overflow-x: hidden;
}
body {
background-color: #862e9c;
color: #dee2e6;
font-family: 'Maven Pro', sans-serif;
font-size: 120%;
}
h1, h2, h3, h4, h5, h6 {
color: #f1f3f5;
font-family: 'Lobster', cursive;
}
a, a:active, a:focus, a:hover, a:visited {
color: #ced4da;
text-decoration: none;
}
a:hover {
color: #f8f9fa;
}
div.wrapper {
width: 60%;
margin: auto;
margin-top: 120px;
height: 500px;
}
header {
height: 100%;
float: left;
width: 30%;
text-align: right;
padding: 60px;
}
main {
height: 100%;
margin-left: 45%;
}
ul {
padding-left: 60px;
}
hr {
border: none;
border-bottom: 1px solid #e9ecef;
}
.logo {
width: 96px;
height: 96px;
display: inline-block;
background-size: cover;
border-radius: 50%;
-moz-border-radius: 50%;
border: 2px solid #F8F7F5;
box-shadow: 0 0 0 3px #46433A;
}