-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (45 loc) · 860 Bytes
/
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
.block {
border-left: 10px solid #235937;
padding-left: 5px;
}
.header {
background: linear-gradient(#235937, #ffcc33);
padding: 20px;
}
.identedLink {
padding-left: 25px;
}
.container {
display: grid;
grid-template-columns: repeat(3, 250px); /* 3 columns */
grid-template-rows: repeat(2, 160px); /* 3 rows */
grid-gap: 50px 30px; /* 50 pixels of space added between rows and 30 pixels added between columns */
}
.item {
padding: 20px;
font-size: 15px;
font-family: sans-serif;
border-left: 10px solid #235937;
padding-left: 5px;
}
h1 {
font-size: 45px;
padding-left: 10px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 15px;
padding-left: 15px;
}
li {
color: #235937;
}
b {
padding: 5px;
}
html,
body {
font-family: "Saturday Sans Bold", sans-serif;
}