legolasyiu commited on
Commit
0483caf
·
verified ·
1 Parent(s): 0754cd9

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +61 -27
style.css CHANGED
@@ -1,28 +1,62 @@
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: 'Open Sans', sans-serif;
3
+ background-color: #f5f5f5;
4
+ color: #333;
5
+ margin: 0;
6
+ padding: 0;
7
+ line-height: 1.6;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  }
9
+ header {
10
+ background-color: #004080;
11
+ color: #fff;
12
+ padding: 20px 0;
13
+ text-align: center;
14
+ }
15
+ header h1 {
16
+ margin: 0;
17
+ font-size: 2rem;
18
+ }
19
+ .container {
20
+ max-width: 960px;
21
+ margin: 30px auto;
22
+ background-color: #fff;
23
+ padding: 30px;
24
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
25
+ }
26
+ h2 {
27
+ color: #004080;
28
+ border-bottom: 2px solid #004080;
29
+ padding-bottom: 5px;
30
+ }
31
+ ul {
32
+ list-style-type: none;
33
+ padding-left: 0;
34
+ }
35
+ li {
36
+ padding: 10px 0;
37
+ border-bottom: 1px solid #ddd;
38
+ }
39
+ li:last-child {
40
+ border-bottom: none;
41
+ }
42
+ .model-title {
43
+ font-weight: bold;
44
+ }
45
+ .sub-list {
46
+ margin-left: 20px;
47
+ list-style-type: disc;
48
+ }
49
+ a {
50
+ color: #004080;
51
+ text-decoration: none;
52
+ }
53
+ a:hover {
54
+ text-decoration: underline;
55
+ }
56
+ footer {
57
+ text-align: center;
58
+ padding: 20px;
59
+ background-color: #004080;
60
+ color: #fff;
61
+ margin-top: 30px;
62
+ }