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
40 lines (40 loc) · 700 Bytes
/
style.css
File metadata and controls
40 lines (40 loc) · 700 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
/**
* 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.
*
*/
header {
text-align: center;
margin: 20px;
padding: 20px;
border-radius: 5px;
color: blueviolet;
}
main {
text-align: center;
margin: 20px;
padding: 20px;
border-radius: 5px;
color: blueviolet;
}
footer {
text-align: center;
margin: 20px;
padding: 20px;
border-radius: 5px;
color: blueviolet;
}
body {
background-color: darkkhaki;
}
.Boxing {
margin: 2px;
padding: 2px;
}
.Boxing:first-child {
color: rgb(139, 61, 81);
font-size: large;
}