-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
70 lines (61 loc) · 1.28 KB
/
css.css
File metadata and controls
70 lines (61 loc) · 1.28 KB
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
body {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
background-image: url('images/photo-1523821741446-edb2b68bb7a0.jpeg');
background-size: cover;
font-family: sans-serif;
color: #333;
}
.wrapper {
max-width: 800px;
width: 100%;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 20px;
}
h1 {
font-size: 2em;
text-align: center;
margin-top: 0;
color: #2a6fa8;
}
.info-section {
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
margin: 20px 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
ul {
font-size: 1rem;
list-style-type: disc;
margin-left: 20px;
line-height: 1.6;
}
li::marker {
font-weight: normal; /* Keep bullet weight consistent */
font-style: normal; /* Prevent italics affecting bullet */
font-size: 1em; /* Set a consistent size */
}
li strong {
color: #333;
}
a {
color: #2a6fa8;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
.info-image {
display: block;
max-width: 100%;
margin: 20px auto;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}