-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (78 loc) · 1.51 KB
/
style.css
File metadata and controls
92 lines (78 loc) · 1.51 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
html {
display: block;
font-family: 'Lora', serif;
}
body {
padding: 0px;
margin: 0px;
font-family: 'Lora', serif;
line-height: 1.6;
}
.banner {
background-image: url(https://loremflickr.com/1000/500);
background-size: cover;
color: whitesmoke;
padding: 120px;
}
.container {
margin: 50px auto;
width:330px;
}
h1, h2 {
font-family: "Montserrat", serif;
font-optical-sizing: auto;
font-style: normal;
}
h1 {
font-size: 36px;
font-weight: 700;
color: rgb(255, 255, 255)
}
h2 {
font-size: 24px;
font-weight: 400;
color: rgb(186, 186, 186)
}
a {
text-decoration: none;
/* background-color: rgb(182, 211, 175); */
color: #4352A1;
font-size: 28px;
font-style:oblique;
/* transition: 0.3s; */
background-image: linear-gradient(to top, rgb(217, 247, 227), rgb(214, 208, 208,0) );
}
a:hover {
/* background-color: rgb(178, 249, 158); */
background-image: linear-gradient(to top, rgb(214, 208, 208,0), rgba(233, 253, 240, 1));
transition: 1s;
cursor: pointer;
}
p {
font-family: 'Lora', serif;
}
.subheading {
font-size: 28px;
font-style:oblique;
}
@media (min-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
margin: 0px auto;
width:440px;
}
}
@media (min-width: 740px) {
/* For a screen < 740px, this CSS will be read */
.container {
margin: 0px auto;
width:600px;
}
}
@media (min-width: 940px) {
/* For a screen < 740px, this CSS will be read */
.container {
margin: 0px auto;
width:840px;
}
}