-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyle.css
109 lines (91 loc) · 1.7 KB
/
style.css
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,700;1,400&display=swap');
.container {
margin: 0 auto;
width: 700px;
}
@media (max-width: 960px) {
.container {
width: 700px;
}
}
@media (max-width: 720px) {
.container {
width: 500px;
}
}
@media (max-width: 540px) {
.container {
width: 300px;
}
}
body {
background-color:aliceblue;
/* TODO: change the font - be mindful of how fonts are imported in the webpage */
font-family: 'Noto Sans', sans-serif;
/* TODO: change the background colour */
color: #827397;
font-size: 16px;
line-height:normal;
}
h1, h2, h3 {
/* TODO: change the header font colour */
color: #4D4C7D;
}
h1 {
font-size: 24px;
line-height: 24px;
}
h2 {
font-size: 20px;
line-height: 20px;
}
h3 {
font-size: 18px;
line-height: 18px;
}
p {
margin-bottom: 40px;
}
a {
/* TODO: change the link colours */
text-decoration: none;
color: #363062;
}
a:hover {
background-color: #827397;
}
.img-circle {
border-radius: 50%;
}
.card-white {
/* TODO: change the card background colour */
background-color: white;
padding: 40px;
box-shadow: 0px 10px 30px rgba(0 0 0 / 10%);
border-radius: 4px;
margin: 20px 0px;
text-align: center;
}
.btn-blue {
/* TODO: change the button colour */
background-color:#4D4C7D;
color: #E9D5CA;
padding: 15px 20px;
border-radius: 4px;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
}
.icon-larger {
font-size: xx-large;
}
.footnote-small {
font-size: 8px;
}