forked from frictionlessdata/geodata-training
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
119 lines (95 loc) · 2.04 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
110
111
112
113
114
115
116
117
118
119
/* Put your styles here */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
body{
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
#livemark-brand{
color: #009AD6 !important;
font-weight: 400 !important;
}
h1{
color: #009AD6 !important;
font-weight: 300 !important;
}
h3{
color: #009AD6 !important;
font-weight: 300 !important;
}
#objectives a{
font-weight: 300 !important;
}
#livemark-main h2:hover .livemark-source-button{
color: #8B9298 !important;
font-weight: 300 !important;
}
a {
display: inline-block;
position: relative;
color: #00aae1 ;
text-decoration: none !important;
width: auto !important;
}
#livemark-search-output a{
color: #32DDC6 !important;
}
#livemark-main a{
color: #7FCFFF !important;
}
.livemark-search-found{
background-color: #32DDC6 !important;
}
#livemark-search-input{
border-radius: 5px !important;
font-size: 1em !important;
}
p{
color: #41484D !important;
}
ul.toc-list{
font-size: 0.7em !important;
}
li.active{
color: #00aae1 !important;
font-weight: 400 !important;
}
table tr:first-child td {
color: #00aae1 !important;
}
#livemark-brand a.active{
color: #00aae1 !important;
}
#livemark-main h2{
color: #00aae1 !important;
font-weight: 400 !important
}
#livemark-brand li{
height: 5em !important;
}
#livemark-brand a{
background-image: url(../assets/logo.svg);
background-repeat: no-repeat !important;
background-size: unset !important;
padding-top: 35% !important;
}
@media only screen and (max-width: 800px) {
#livemark-brand a{
padding-top: 20% !important;
}
}
a::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
border-radius: 5px;
height: 0.05em;
bottom: 0;
left: 0;
background: currentcolor;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}