-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 1.02 KB
/
style.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
/* General Styling */
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
margin: 0 auto;
max-width: 900px;
line-height: 1.4;
color: #333;
background-color: #ffffff; /* Set background to white */
padding: 10px;
}
/* Header Styling */
h1 {
text-align: center;
font-size: 2.5em;
margin-top: 0;
margin-bottom: 10px;
color: #1a1a1a;
}
.contact-info {
text-align: center;
margin-bottom: 10px;
font-size: 1em;
color: #666;
}
/* Section Styling */
h2 {
font-size: 1.5em;
margin-top: 20px;
margin-bottom: 5px;
color: #1a1a1a;
}
table {
width: 100%;
margin-top: 10px;
border-collapse: collapse;
}
td {
padding: 8px;
vertical-align: top;
font-size: 0.9em;
}
/* Remove alternating background color for rows */
td:first-child {
font-weight: bold;
width: 30%;
}
/* Two-column layout */
.two-column {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.column {
flex: 0 0 48%;
box-sizing: border-box;
}