-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-shed-theme.css
78 lines (63 loc) · 1.13 KB
/
data-shed-theme.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
/* @theme the-data-shed */
@import 'default';
:root {
/* Variables */
/* (from the brand guidelines) */
--primary-orange: #ff8c27;
--primary-purple: #5c59a7;
--primary-green: #5cdcc1;
--secondary-blue: #28b4e5;
--secondary-crimson: #d73455;
--secondary-yellow: #ffd81c;
--grey-1: #f2f2f2;
--grey-2: #a0a0a0;
--grey-3: #545454;
--grey-4: #444444;
width: 1280px;
height: 960px;
}
* {
font-family: 'Catamaran', 'Calibri', sans-serif;
font-size: 1em;
color: var(--primary-purple);
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
color: var(--primary-orange);
}
h1 {
font-size: 4em;
}
h2 {
font-size: 3em;
color: var(--primary-green)
}
h3 {
font-size: 2em;
color: var(--secondary-blue)
}
section {
background-color: #ffffff;
padding: 40px;
}
img {
width: auto;
background: none;
}
img.no-responsive {
width: auto;
}
header > img {
height: 70px;
}
footer > img {
height: 110px;
}
small {
font-size: 0.8em;
color: var(--primary-orange);
}
small > a {
color: var(--primary-orange);
text-decoration: underline;
}