-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (80 loc) · 1.43 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
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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
/* Body Styling */
body {
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
/* Header */
header {
text-align: center;
padding: 20px;
background-color: #0A3D62;
color: white;
}
header h1 {
font-size: 2rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
}
/* Main Content */
main {
padding: 20px;
text-align: center;
}
figure {
margin: 20px auto;
text-align: center;
}
figcaption {
font-size: 1rem;
margin-bottom: 10px;
}
/* Image Styling */
.image-container img {
margin: 20px auto;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Links */
.live-link p {
font-size: 1rem;
margin: 20px 0;
}
.live-link a {
color: #0A3D62;
text-decoration: none;
font-weight: bold;
}
.live-link a:hover {
text-decoration: underline;
}
/* About Section */
.about {
text-align: left;
margin: 20px auto;
padding: 10px;
max-width: 800px;
background: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.about p {
margin: 10px 0;
}
/* Footer */
footer {
text-align: center;
padding: 10px;
background-color: #2E2E2E;
color: white;
margin-top: 20px;
}