-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
89 lines (72 loc) · 885 Bytes
/
index.css
File metadata and controls
89 lines (72 loc) · 885 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
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
body {
background-color: #000;
color: #fff;
}
.center {
text-align: center;
}
.xtra-large {
font-size: xx-large;
font-weight: 900;
}
.large {
font-size: x-large;
font-weight: 600;
}
.flex {
display: flex;
}
.row {
flex-direction: row;
}
.column {
flex-direction: column;
}
.gap10 {
gap: 10px;
}
.flex-1 {
flex: 1 0 40%;
}
.flex-2 {
flex: 2;
}
.w50 {
width: 50%;
}
.w70 {
width: 70%;
}
.h100 {
height: 100%;
}
.space {
min-height: 20%;
min-width: 10%;
}
a:link {
color: #fff;
}
a:visited {
color: #fff;
}
.padl15 {
padding-left: 15%;
}
.right-border {
border-right: 1px solid #fff;
}
.horizontal-list-item {
float: left;
}
.horizontal-list-item a {
display: block;
color: #fff;
text-align: center;
padding: 16px;
text-decoration: none;
}
.horizontal-list-item a:hover {
background-color: #fff;
color: #000;
}