-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathHeader.css
54 lines (45 loc) · 874 Bytes
/
Header.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
/**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-present Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
@import '../variables.css';
:root {
--brand-color: #61dafb;
}
.root {
background: #373277;
color: #fff;
}
.container {
margin: 0 auto;
padding: 20px 0;
max-width: var(--max-content-width);
}
.brand {
color: color(var(--brand-color) lightness(+10%));
text-decoration: none;
font-size: 1.75em; /* ~28px */
}
.brandTxt {
margin-left: 10px;
}
.banner {
text-align: center;
}
.bannerTitle {
margin: 0;
padding: 10px;
font-weight: normal;
font-size: 4em;
line-height: 1em;
}
.bannerDesc {
padding: 0;
color: rgba(255, 255, 255, 0.5);
font-size: 1.25em;
margin: 0;
}