Popoolaibrahimtayo commited on
Commit
4e03329
·
verified ·
1 Parent(s): 9ecf9ea

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +21 -0
static/style.css ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: sans-serif;
3
+ text-align: center;
4
+ background-color: #f8f9fa;
5
+ color: #333;
6
+ }
7
+ .container {
8
+ margin-top: 10vh;
9
+ }
10
+ .btn {
11
+ display: inline-block;
12
+ background-color: #007bff;
13
+ color: white;
14
+ padding: 10px 20px;
15
+ border-radius: 8px;
16
+ text-decoration: none;
17
+ font-weight: bold;
18
+ }
19
+ .btn:hover {
20
+ background-color: #0056b3;
21
+ }