-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (95 loc) · 1.73 KB
/
style.css
File metadata and controls
109 lines (95 loc) · 1.73 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
}
header {
background-image: url('../img/bar-people.jpg'); /* unsplash.com */
background-attachment: fixed;
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
text-align: center;
color: #eee;
padding-bottom: 150px;
}
nav {
margin-bottom: 100px;
background-color: rgba(0,0,0,.7);
padding: 1.5rem 1.65rem 3rem;
}
nav li {
list-style: none;
display: inline-block;
}
nav a {
font: bold 1.5rem/1em Raleway,sans-serif;
color: #eee;
text-decoration: none;
transition: .2s;
}
nav a:hover {
text-decoration: underline;
}
.left {
float: left;
}
.right {
float: right;
}
.right li {
margin: 0 1rem;
}
.right li:last-child {
margin-right: 0;
}
h1, h2, h3 {
font-family: Raleway,sans-serif;
line-height: 1.5em;
}
h1 {
font-size: 5rem;
margin-bottom: 1rem;
}
h2 {
font-size: 2rem;
margin-bottom: .5rem;
}
.header-slider {
width: 60%;
margin: 15px auto;
}
.dark-bg {
border: none;
}
.dark-bg a {
display: block;
text-decoration: none;
font: bold 1.15rem/1em Raleway,sans-serif;
color: #eee;
background: #e1486c;
padding: 1rem;
border-bottom: 3px solid #bd1f44;
border-top: 0px solid #7b142c;
transition: .2s;
}
.dark-bg a:hover, .dark-bg a:active {
background: #bd1f44;
border-bottom: 3px solid #7b142c;
}
.dark-bg a:active {
border-bottom: 0px solid #7b142c;
border-top: 3px solid #7b142c;
}
section {
background: #E3FDFF;
padding: 5% 5% 0;
}
.container {
background: #fff;
width: 80%;
margin: 0 auto;
padding: 3.5rem;
box-shadow: -1px -1px .5rem #aaa;
}