-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (71 loc) · 1.11 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
background: #f0f3f5;
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 10px;
}
h1,h2 {
color: #333;
margin-bottom: 20px;
}
h4, h5 {
color: #333;
margin-bottom: 10px;
}
p {
color: #666;
margin-bottom: 10px;
}
p a {
color: #06c;
text-decoration: none;
}
p a:hover {
text-decoration: underline;
}
.card {
background: #fff;
border: 1px solid #ddd;
margin-top: 20px;
padding: 20px;
}
.card h4 {
font-size: 20px;
border-bottom: 1px solid #ddd;
padding-bottom: 10px;
margin-bottom: 20px;
}
.card ul {
list-style-type: disc;
padding-left: 20px;
}
.card img {
max-width: 100%;
height: auto;
display: block;
margin: 10px 0;
}
.navbar {
background: #252525;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
}
.navbar-heading {
color: #e6e6e6;
margin: 0;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}