forked from NateWr/html-css-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
70 lines (57 loc) · 933 Bytes
/
stylesheet.css
File metadata and controls
70 lines (57 loc) · 933 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
61
62
63
64
65
66
67
68
69
70
body {
background-color: rgb(255, 242, 236);
font-family: Arial, Helvetica, sans-serif;
text-align: center;
}
.container {
width: 90%;
margin: auto;
background-color: white;
}
section {
display: flex;
}
header {
padding: 20px 0 0 0;
}
h1, span, a, footer p {
color: rgb(226, 80, 12);
}
p {
color: rgb(34, 16, 5);
}
a {
text-decoration: none;
font-size: 1.2em;
font-weight: bold;
}
main {
columns: 3;
width: 80%;
}
aside {
width: 20%;
margin-top: 100px;
padding-right: 30px;
}
article {
padding: 10px 30px;
}
article:first-child {
border-left: 4px solid rgb(255, 141, 88);
border-bottom: 4px solid rgb(255, 141, 88);
}
img {
margin: auto;
display: block;
height: 150px;
width: 100%;
margin-bottom: 40px;
object-fit: cover;
}
article p {
text-align: justify;
}
hr {
border: 0.5px solid rgb(255, 160, 97);
}