muhammadasim117 commited on
Commit
aee500f
·
verified ·
1 Parent(s): ed0b931

Update static/css/styles.css

Browse files
Files changed (1) hide show
  1. static/css/styles.css +29 -0
static/css/styles.css CHANGED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ line-height: 1.6;
4
+ margin: 0;
5
+ padding: 0;
6
+ background-color: #f4f4f4;
7
+ color: #333;
8
+ }
9
+ header {
10
+ background: #333;
11
+ color: #fff;
12
+ padding: 1rem 0;
13
+ text-align: center;
14
+ }
15
+ section {
16
+ padding: 2rem;
17
+ margin: 1rem 0;
18
+ background: #fff;
19
+ }
20
+ h1, h2, h3 {
21
+ color: #333;
22
+ }
23
+ a {
24
+ color: #007BFF;
25
+ text-decoration: none;
26
+ }
27
+ a:hover {
28
+ text-decoration: underline;
29
+ }