dschandra commited on
Commit
a2141e0
·
verified ·
1 Parent(s): 86a3719

Create static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +57 -0
static/styles.css ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ margin: 0;
4
+ padding: 0;
5
+ background-color: #f4f4f4;
6
+ }
7
+
8
+ header {
9
+ background-color: #333;
10
+ color: white;
11
+ padding: 20px;
12
+ text-align: center;
13
+ }
14
+
15
+ nav ul {
16
+ list-style: none;
17
+ padding: 0;
18
+ }
19
+
20
+ nav ul li {
21
+ display: inline;
22
+ margin: 0 10px;
23
+ }
24
+
25
+ nav ul li a {
26
+ color: white;
27
+ text-decoration: none;
28
+ }
29
+
30
+ main {
31
+ padding: 20px;
32
+ }
33
+
34
+ footer {
35
+ text-align: center;
36
+ padding: 10px;
37
+ background-color: #333;
38
+ color: white;
39
+ position: fixed;
40
+ bottom: 0;
41
+ width: 100%;
42
+ }
43
+
44
+ table {
45
+ width: 100%;
46
+ margin-top: 20px;
47
+ border-collapse: collapse;
48
+ }
49
+
50
+ table, th, td {
51
+ border: 1px solid #ddd;
52
+ }
53
+
54
+ th, td {
55
+ padding: 8px;
56
+ text-align: left;
57
+ }