-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (47 loc) · 749 Bytes
/
styles.css
File metadata and controls
54 lines (47 loc) · 749 Bytes
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
:root {
--blue: #0000bf;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #d63384;
--red: #dc3545;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #198754;
--teal: #20c997;
--cyan: #0dcaf0;
--white: #fff;
--gray-100: #f8f9fa;
--gray-200: #e9ecef;
--gray-300: #dee2e6;
--gray-400: #ced4da;
--gray-500: #adb5bd;
--gray-600: #6c757d;
--gray-700: #495057;
--gray-800: #343a40;
--gray-900: #212529;
--black: #000;
}
body {
display: grid;
place-items: center;
margin: 0;
}
.title {
font-size: 30px;
}
header {
position: absolute;
top: 3%;
}
main {
position: absolute;
top: 25%;
}
footer {
position: absolute;
top: 95%;
}
abbr {
color: var(--gray-600);
text-decoration: underline wavy;
}