deepakchawla-cb commited on
Commit
f92680a
1 Parent(s): 05f1688

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +39 -17
style.css CHANGED
@@ -1,28 +1,50 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
 
 
 
 
 
4
  }
5
 
6
  h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
28
  }
 
1
  body {
2
+ font-family: Arial, sans-serif;
3
+ margin: 0;
4
+ padding: 0;
5
+ background-color: #f2f2f2;
6
+ }
7
+
8
+ header {
9
+ background-color: #007BFF;
10
+ color: #fff;
11
+ text-align: center;
12
+ padding: 20px;
13
  }
14
 
15
  h1 {
16
+ margin: 0;
17
+ }
18
+
19
+ main {
20
+ max-width: 800px;
21
+ margin: 20px auto;
22
+ background-color: #fff;
23
+ padding: 20px;
24
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
25
+ }
26
+
27
+ table {
28
+ width: 100%;
29
+ border-collapse: collapse;
30
+ }
31
+
32
+ table th, table td {
33
+ border: 1px solid #ddd;
34
+ padding: 8px;
35
+ text-align: left;
36
  }
37
 
38
+ table th {
39
+ background-color: #007BFF;
40
+ color: #fff;
 
 
41
  }
42
 
43
+ table tr:nth-child(even) {
44
+ background-color: #f2f2f2;
 
 
 
 
45
  }
46
 
47
+ a {
48
+ text-decoration: none;
49
+ color: #007BFF;
50
  }