-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (101 loc) · 1.83 KB
/
style.css
File metadata and controls
116 lines (101 loc) · 1.83 KB
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
@import url('https://fonts.googleapis.com/css?family=Nunito');
/* === Responsive === */
@media only screen and (max-width: 768px) {
.list-grid {
position: relative !important;
flex-direction: column !important;
justify-content: center;
}
.list-grid h2 {
margin: 0 !important;
margin-bottom: 1.5rem !important
}
.list-grid ol {
flex-direction: column;
}
}
/* ===*/
body {
font-family: "Nunito", sans-serif;
background: #81d4fa;
color: #fff;
}
/* === Typography === */
h1,h2,h3,h4,h5,h6 {
font-weight: bold;
margin: 0;
margin-bottom: 1rem;
}
/* ===*/
/* === Form === */
.btn {
background: #fff;
color: #81d4fa;
font-weight: bold;
border: 0;
padding: 1.5rem 3rem;
border-radius: 100px;
box-shadow: 0px 3px 0px rgba(0,0,0,0.1);
transition: 0.25s;
}
.btn:hover {
background: #fff;
color: #81d4fa;
box-shadow: unset;
transform: translateY(3px);
}
/* ===*/
.header-bg {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
width: 100vw;
height: 100vh;
}
.header-bg h1 {
font-size: 45px;
}
.header-bg p {
display: inline-block;
font-size: 18px !important;
width: 75%;
}
.list-grid {
position: fixed;
top: 0;
display: flex;
align-items: center;
/*background: #f9f9f9;*/
width: 100%;
padding: 3rem 3rem;
}
.list-grid h2 {
margin-bottom: 0;
margin-right: auto;
}
.list-grid ol {
list-style: none;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
}
.list-grid ol li a {
/*background: #fff;*/
/*color: #81d4fa;*/
color: rgb(0,0,0,0.2);
font-size: 18px;
font-weight: bold;
text-transform: capitalize;
border: 0;
margin: 0 1.5rem;
border-radius: 100px;
/*box-shadow: 0px 3px 0px rgba(0,0,0,0.1);*/
transition: 0.25s;
}
.list-grid ol li a:hover {
color: #fff;
text-decoration: none;
}