forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (71 loc) · 1.29 KB
/
style.css
File metadata and controls
79 lines (71 loc) · 1.29 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
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
body {
background-color: #f3d3bd;
font-family: "Roboto", sans-serif;
font-weight: 300;
color: #5e5e5e;
}
#title {
background-color: black;
color: white;
position: relative;
text-align: center;
font-style: italic;
width: 100vw;
}
header > p {
text-indent: 25px;
}
footer {
height: 200px;
display: flex;
align-items: center;
justify-content: center;
}
#madeby {
margin: auto;
padding: 10px;
bottom: 15px;
}
section:first-child {
background-color: rgb(188, 172, 202);
border-radius: 5px;
margin-bottom: 100px;
padding: 5px;
width: 99vw;
}
.articles > h2 {
text-align: center;
background-color: black;
border-radius: 4px;
width: 100vw;
}
h2 > a {
color: black;
background-color: #fcfaf9;
border-radius: 10px;
padding: 1px 10px 1px 10px;
font-family: "Roboto", sans-serif;
font-weight: 1000;
font-style: italic;
text-decoration: none;
}
.articles > p {
text-indent: 25px;
text-align: justify;
color: #5e5e5e;
}
.logos {
display: block;
border-radius: 15px;
margin-left: auto;
margin-right: auto;
height: 75px;
}