-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (59 loc) · 1023 Bytes
/
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
.banner {
background-image: url("https://source.unsplash.com/random/1000x500");
background-size: cover;
color: white;
padding: 120px 0;
}
.container {
width: 700px;
margin: 50px auto;
}
.banner h1 {
font-size: 38px;
}
.banner p {
font-size: 30px;
font-style: italic;
font-weight: lighter;
opacity: 0.8;
}
.link-medium {
background-image: linear-gradient(to bottom, rgba(233, 253, 240, 1), rgba(233, 253, 240, 1));
color: #636363;
font-weight: lighter;
font-size: 25px;
font-style: italic;
}
body {
color: #494949;
font-size: 18px;
line-height: 1.6;
font-weight: lighter;
font-family: 'Lora', serif;
margin: 0;
}
h1, h2 {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
h2 {
color: #A0A0A0;
font-weight: normal;
}
a {
text-decoration: none;
color: #4352A1;
}
@media(max-width: 900px) {
.container {
width: 700px;
}
}
@media(max-width: 750px) {
.container {
width: 450px;
}
}
@media(max-width: 500px) {
.container {
width: 350px;