-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (73 loc) · 1.43 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
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;700&display=swap');
body {
color: #494949;
font-size: 18px;
line-height: 1.6em;
font-weight: lighter;
font-family: 'Lora', serif;
margin: 0px;
}
h1, h2 {
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
a {
text-decoration: none;
background: linear-gradient(to rigth, white, gray);
}
a:hover{
background: linear-gradient(to rigth, blue, white)
}
.link-medium {
background-image: linear-gradient(to bottom, rgba(233,253,240,1), rgba(233,253,240,1));
color: #636363;
font-size: 25px;
font-style: italic;
}
.link-medium:hover {
background-image: linear-gradient(to bottom, rgba(3,247,89,1), rgba(3, 247, 89,1));
color: #636363;
font-size: 25px;
font-style: italic;
}
.container{
max-width: 700px;
margin: 50px auto;
}
.banner {
background-image: url(https://source.unsplash.com/random/1000x500);
background-size: cover;
padding: 120px 0px;
}
.banner h1 {
color: white;
font-size: 32px;
background-size: cover;
}
.banner p {
font-size: 30px;
font-style: italic;
font-weight: lighter;
opacity: 0.8;
}
/* Media queries */
@media(max-width: 536px) {
.container {
width: 378px;
}
}
@media(max-width: 768px) {
.container {
width: 563px;
}
}
@media(max-width: 992px) {
.container {
width: 700px;
}
}
@media(max-width: 1200px) {
.container {
width: 700px;
}
}