-
Notifications
You must be signed in to change notification settings - Fork 0
/
w3.css
139 lines (107 loc) · 2.4 KB
/
w3.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* Reset some default styles */
body, h1, h2, p, ul {
margin: 0;
padding: 0;
}
/* Basic body styles */
body {
font-family: Georgia, serif;
background-color: #1a2e40;
color: #ffffff;
line-height: 1.6;
padding: 20px;
}
/* Header styles */
header h1 {
font-weight: bold;
color: #ffffff; /* Title text color changed to white */
font-size: 3em; /* Increased font size for the title */
margin-bottom: 20px;
text-align: center;
}
/* Section titles */
h2 {
font-family: Georgia, serif;
font-size: 22px;
margin-bottom: 10px;
text-align: center; /* Centering subtitles */
}
/* Paragraph and Box styles */
.box {
background-color: #ecf0f1;
color: #333;
padding: 15px;
margin: 20px auto;
border-radius: 10px;
max-width: 90%; /* Consistent width for all boxes */
font-size: 14px;
text-align: center;
width: 90%; /* Ensures consistent width across all boxes */
}
/* Align content with centered layout */
.content {
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
}
/* Left side text box container */
.text-boxes {
width: 45%;
display: flex;
flex-direction: column;
align-items: center;
}
/* Right side images container */
.images {
width: 45%;
display: flex;
flex-direction: column;
align-items: center;
gap: 30px; /* Extra space between images */
}
/* Center the top image */
.full-width-image {
width: 100%;
height: auto;
margin-bottom: 20px;
}
/* Style for images on the right side */
.image-right {
width: 100%;
height: auto;
border-radius: 10px;
}
.image1-tall {
max-height: 450px; /* Increased height for image1 */
}
/* Unordered list with hyphens */
ul {
list-style-type: none;
padding-left: 0;
}
ul li::before {
content: "- ";
}
/* Link styles */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Button styles */
.download-button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border-radius: 5px;
text-decoration: none;
font-family: Calibri, Arial, sans-serif;
}
.download-button:hover {
background-color: #0056b3;
}