-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (101 loc) · 1.76 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
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
header{
background-color: #181818;
padding-top: 10px;
padding-left: 50px;
padding-right: 50px;
padding-bottom: 10px;
}
body {
font-family: Arial, sans-serif;
background-color: #2d2d2d;
margin: 0;
padding: 0;
overflow: hidden;
}
h1 {
color: #8d8d8d;
}
h2 {
color: #8d8d8d;
}
h3 {
color: #8d8d8d;
}
p {
color: #9f9f9f;
}
.main_container{
display: flex;
justify-content: center;
}
.centered_container{
display: flex;
justify-content: space-around;
align-items: center;
}
.narrow_container{
display: flex;
justify-content: center;
align-items: center;
width: 80%;
padding-top: 30px;
padding-bottom: 30px;
}
.right_align_container{
display: flex;
justify-content: flex-end;
align-items: center;
height: 100px;
}
.left_align_container{
display: flex;
justify-content: flex-start;
align-items: center;
height: 100px;
}
.navbar_brand{
font-family: Arial, sans-serif;
font-weight: bold;
width: fit-content;
font-size: 32px;
background: #080808;
padding: 8px;
border-radius: 10px;
}
.navbar_brand a{
color: #e8e8e8;
text-decoration: none;
}
.navbar_item{
font-family: Arial, sans-serif;
font-weight: normal;
width: fit-content;
font-size: 24px;
}
.navbar_item a{
color: #8d8d8d;
text-decoration: none;
}
.grid_container{
display: flex;
width: 1080;
}
.grid-itemL{
flex: 1;
background-color: #222222;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 25px;
padding-right: 10px;
}
.grid-itemL p{
color: #9f9f9f;
}
.grid-itemR{
flex: 1;
background-color: #FDD024;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 25px;
}