This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (66 loc) · 1.42 KB
/
style.css
File metadata and controls
88 lines (66 loc) · 1.42 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
/**
* 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 {
align-items: center;
justify-content: space-between;
height: 5rem;
margin-bottom: 1rem;
padding-top: 1rem;
}
.navigation__list {
display: flex;
list-style: none;
color: #3835f0;
}
.navigation__item {
padding: 2rem;
}
.navigation__link {
font-weight: 600;
text-transform: uppercase;
text-decoration: none;}
.section{
border-width: 0.1rem;
border-style: solid;
border-color: grey;
padding: 1rem;
}
.article_title {
color: #3835f0
}
.section:first-child {
background: #d4d3eb;
}
.article__summary {
margin-top: 0;
margin-bottom: 1rem;
}
.article__read-more a {
font-size: 0.85rem;
font-weight: 700;
color: #3835f0;
text-decoration: none;
}
.article__read-more a:hover,
.article__read-more a:focus {
text-decoration: underline;
}
.footer {
margin-top: 2rem;
}
.footer__content {
border-top: 2px;
padding-top: 2rem;
padding-bottom: 2rem;
}
.footer p {
padding-bottom: 1rem;
text-align: center;
font-size: 0.85rem;
}