-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (54 loc) · 927 Bytes
/
style.css
File metadata and controls
60 lines (54 loc) · 927 Bytes
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
body{
background: rgb(245,245,245);
color: green;
font-size: 25px;
font-family: Helvetica;
text-align: center;
}
.banner{
background-image: url('https://images.unsplash.com/photo-1554189097-469e3847835d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=750&q=80');
background-size: cover;
padding: 150px;
width:100%;
}
h1{
font-family: sans-serif;
color: #103c42;
font-weight: 500;
font-size: 50px;
}
h2{
font-family: sans-serif;
color: #103c42;
font-weight: 500;
font-size: 40px;
}
p {
font-family: sans-serif;
color: #02576c;
font-weight: lighter;
font-size: 20px;
}
a {
color: #05a19c;
}
a:hover {
text-decoration: none;
color: #fdcb6e;
}
#footer{
padding: 30px;
background: rgb(30, 30, 30);
color: lightgrey;
}
.card{
padding: 50px;
font-weight: lighter;
}
#footer a {
color: lightgrey;
font-size: 15px;
}
#footer a:hover {
color: white;
}