Arsala Grey commited on
Commit
b2f6b5c
1 Parent(s): 6b89c3c
Files changed (1) hide show
  1. utils.css → main.css +41 -2
utils.css → main.css RENAMED
@@ -1,4 +1,7 @@
1
- /* Flexbox utilities */
 
 
 
2
  .flex {
3
  display: flex;
4
  }
@@ -116,6 +119,42 @@
116
  border-color: #0ca83d;
117
  }
118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  .image-container {
120
  display: flex;
121
  justify-content: center;
@@ -138,7 +177,7 @@
138
  transform: translateX(-50%);
139
  background-color: rgba(0, 0, 0, 0.8);
140
  color: white;
141
- font-size: 12px;
142
  font-weight: bold;
143
  padding: 4px 8px;
144
  border-radius: 4px;
 
1
+ h1, h2, h3, h4, h5, h6 {
2
+ margin-bottom: 1rem;
3
+ }
4
+
5
  .flex {
6
  display: flex;
7
  }
 
119
  border-color: #0ca83d;
120
  }
121
 
122
+ .btn-primary {
123
+ background-color: #0c6fc1;
124
+ border-color: #0c6fc1;
125
+ }
126
+
127
+ .btn-primary:hover {
128
+ background-color: #0c5fa8;
129
+ border-color: #0c5fa8;
130
+ }
131
+
132
+ /* B&W + Gray buttons */
133
+
134
+ .btn-bw {
135
+ background-color: #fff;
136
+ border-color: #fff;
137
+ color: #000;
138
+ }
139
+
140
+ .btn-bw:hover {
141
+ background-color: #000;
142
+ border-color: #000;
143
+ color: #fff;
144
+ }
145
+
146
+ .btn-gray {
147
+ background-color: #ccc;
148
+ border-color: #ccc;
149
+ color: #000;
150
+ }
151
+
152
+ .btn-gray:hover {
153
+ background-color: #000;
154
+ border-color: #000;
155
+ color: #fff;
156
+ }
157
+
158
  .image-container {
159
  display: flex;
160
  justify-content: center;
 
177
  transform: translateX(-50%);
178
  background-color: rgba(0, 0, 0, 0.8);
179
  color: white;
180
+ font-size: 16px;
181
  font-weight: bold;
182
  padding: 4px 8px;
183
  border-radius: 4px;