-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.css
93 lines (78 loc) · 1.37 KB
/
base.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
@import "css/button.css";
@import "css/colors.css";
@import "css/dropdown.css";
@import "css/header.css";
@import "css/loader.css";
@import "css/movie-details.css";
@import "css/movie-item.css";
@import "css/nav.css";
@import "css/search.css";
@import "css/settings-row.css";
/**
* App Generic
*/
body {
font-family: Dosis;
background: #191c28;
}
section,
header {
margin: 40px auto;
width: 920px;
clear: both;
}
h3 {
font-size: 48px;
font-weight: bold;
line-height: 60px;
color: #FFFFFF;
}
/**
* Base of Styleguide
*/
.logo {
width: 120px;
display: inline-block;
vertical-align: middle;
}
.title {
width: calc(100% - 130px);
display: inline-block;
vertical-align: middle;
}
.title h1 {
font-family: Dosis;
font-size: 36px;
font-weight: bold;
line-height: 46px;
color: #FFFFFF;
}
.sub-header {
opacity: 0.4;
font-size: 20px;
line-height: 26px;
color: #FFFFFF;
display: block;
font-weight: 500;
}
.background-white {
background-color: #FFFFFF;
}
.background-outline {
opacity: 0.4;
border: 3px solid #ffffff
}
.background-primary {
background-color: #FF1744;
}
.background-disabled {
background-color: #74767C;
}
span.info {
font-size: 20px;
color: #ffffff;
display: inline-block;
width: 150px;
text-align: center;
margin: 0 4px 10px;
}