-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
143 lines (123 loc) · 2.3 KB
/
style.css
File metadata and controls
143 lines (123 loc) · 2.3 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
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
140
141
142
143
/* Hashtag Styling */
p.hashtag {
font-size: 1rem;
color: #4b0082; /* Purple tone to match theme */
background: #f0f0ff; /* Light purple background */
padding: 10px;
border-radius: 5px;
display: inline-block;
margin-top: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
p.hashtag span {
font-weight: bold;
color: #8a2be2; /* Brighter purple for the hashtags */
margin-right: 5px;
}
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body and Global Styling */
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background: #f5f5fa;
color: #333;
margin: 0;
}
/* Header Styles */
header {
background: linear-gradient(to right, #4b0082, #8a2be2);
color: #fff;
text-align: center;
padding: 20px;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
header p {
font-size: 1.2rem;
margin-bottom: 5px;
}
/* Section Styles */
main {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
}
section {
margin-bottom: 40px;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
}
section h2 {
font-size: 2rem;
color: #4b0082;
margin-bottom: 15px;
border-bottom: 2px solid #eee;
padding-bottom: 5px;
}
section p, section li {
margin: 10px 0;
font-size: 1rem;
}
/* Image Styles */
.large-img, .medium-img, .small-img {
display: block;
max-width: 100%;
height: auto;
margin: 10px auto;
border-radius: 10px;
}
.small-img {
width: 300px;
height: 300px;
}
/* List Styles */
ul, li {
list-style-type: none;
padding-left: 20px;
}
li::before {
content: "🌟";
margin-right: 10px;
}
/* Video Container */
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
margin: 20px 0;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
}
/* Footer Styles */
footer {
background: #4b0082;
color: #fff;
text-align: center;
padding: 10px 0;
margin-top: 20px;
}
footer a {
color: #ffdd00;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}