-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathstyles.css
75 lines (66 loc) · 1.31 KB
/
styles.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
html, body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-size: 14px;
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
a {
color: #2196f3;
}
a:hover {
text-decoration: none;
}
.header {
color: #fff;
text-align: center;
background-color: #F1F2B5;
background-image: linear-gradient(120deg, #135058, #F1F2B5);
padding: 2rem;
}
.header__title {
font-size: 2.5rem;
font-weight: bold;
}
.header_tagline {
margin: 1rem 0 2rem;
opacity: 0.85;
}
.header__button {
display: inline-flex;
align-items: center;
text-decoration: none;
font-size: 1.25rem;
padding: 1.5rem;
color: #fff;
border-color: rgba(255, 255, 255, 0.35);
border-style: solid;
border-width: 1px;
border-radius: 0.3rem;
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.header__button:hover {
background-color: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.5);
}
.header__button__image {
margin-left: 1rem;
-webkit-filter: invert(1);
filter: invert(1);
}
.container {
width: 1000px;
max-width: 100%;
margin: 0 auto;
padding: 2rem;
}
.section {
}
.section__header {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
color: #135058;
}