Project

General

Profile

1
:root {
2
  --font-size: 16px;
3
  --text-color: #1A1A1A;
4
  --text-color-rgb: 26,26,26;
5
  --muted-color: #4D4D4D;
6
  --xs-font-size: 12px;
7
  --small-font-size: 14px;
8
  --large-font-size: 18px;
9
}
10

    
11
body {
12
  color: var(--text-color);
13
  font-size: var(--font-size);
14
  font-family: "Open Sans", sans-serif;
15
}
16

    
17
.landing, new-search-page, search-all {
18
  font-size: var(--small-font-size);
19
}
20

    
21
.landing .uk-text-small, new-search-page .uk-text-small, search-all .uk-text-small {
22
  font-size: var(--xs-font-size);
23
}
24

    
25
.color {
26
  color: var(--text-color) !important;
27
}
28

    
29
.uk-text-small {
30
  font-size: var(--small-font-size);
31
}
32

    
33
.uk-text-large {
34
  font-size: var(--large-font-size);
35
}
36

    
37
.uk-text-muted {
38
  color: var(--muted-color) !important;
39
}
40

    
41
.uk-logo {
42
  font-family: "Roboto", sans-serif;
43
  font-size: 24px;
44
  color: var(--text-color);
45
}
46

    
47
@media only screen and (max-width: 639px) {
48
  :root {
49
    --font-size: 14px;
50
    --small-font-size: 12px;
51
  }
52

    
53
  .uk-logo {
54
    font-size: 18px;
55
  }
56
}
(10-10/11)