-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
211 lines (191 loc) · 4.53 KB
/
style.css
File metadata and controls
211 lines (191 loc) · 4.53 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
body {
margin: 0;
padding: 0;
background-color: #c1e8ff;
background: url('background_CMT.jpg');
font-family: 'Tenor Sans', sans-serif;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
header {
/* background-color: #5483b3; */
backdrop-filter: blur(20px) hue-rotate(60deg);
color: white;
text-align: center;
/* padding: 1rem 0; */
max-width: 800px;
margin: 20px auto;
padding: 20px;
border-radius: 50px;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
#post-form, #post-list {
margin-bottom: 30px;
}
#post-list>h2{
color: #fff;
}
#post-form{
/* background-color: #c1e8ff; */
backdrop-filter: blur(20px) hue-rotate(60deg);
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50px;
padding: 10px;
color: aliceblue;
transition: opacity 0.3s ease-in-out;
}
#toggle-form{
width: 60px; /* Make the button smaller */
height: 60px; /* Make the button smaller */
border-radius: 50%;
/* background-color: #007bff; */
color: #fff;
font-size: 14px; /* Reduce the font size */
border: none;
cursor: pointer;
background-color: #052659;
text-align: center;
}
.right{
/* text-align: right; */
margin-right: 50px;
margin-top: -1.8em;
display: flex;
color: white;
justify-content: flex-end;
}
.new{
background-color: #052659;
border-bottom-left-radius: 20px;
border-top-left-radius: 20px;
padding: 10px;
margin-right: -0.7em;
}
/* .new{
display: none;
} */
#toggle-form:hover + .new {
display: block;
}
.image, .video{
width: 200px;
height: auto;
}
/* Styles for the Create Post form */
#create-post-form {
/* background-color: rgba(255, 255, 255, 0.8); */
padding: 20px;
border-radius: 10px;
/* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
max-width: 600px;
margin: 0 auto;
}
#create-post-form label {
font-weight: bold;
}
#create-post-form input[type="text"],
#create-post-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
#create-post-form input[type="file"] {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
#create-post-form button[type="submit"] {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
#create-post-form button[type="submit"]:hover {
background-color: #0056b3;
}
/* Add some spacing to labels and inputs */
#create-post-form label,
#create-post-form input,
#create-post-form textarea {
margin-bottom: 15px;
}
/* Center the form on the page */
#create-post-form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Optional: Style the file input button */
#create-post-form input[type="file"]::-webkit-file-upload-button {
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
#create-post-form input[type="file"]::-webkit-file-upload-button:hover {
background-color: #0056b3;
}
/* Style the larger textarea */
#create-post-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
resize: vertical; /* Allow vertical resizing */
height: 150px; /* Adjust the height as needed */
}
/* Styles for the dynamically created post items */
#posts li {
width: 100%;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
}
#posts li h3 {
font-size: 24px;
margin: 0;
color: #333;
}
#posts li p {
font-size: 18px;
color: #555;
margin-top: 10px;
}
#posts li img.image {
max-width: 100%;
height: auto;
margin-top: 10px;
border-radius: 5px;
}
#posts li video.video {
max-width: 100%;
height: auto;
margin-top: 10px;
border-radius: 5px;
}