forked from Ajwebdevs/Restnews
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (35 loc) · 667 Bytes
/
style.css
File metadata and controls
42 lines (35 loc) · 667 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
background-color: rgba(254, 254, 254, 0.511);
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 60px auto;
padding: 30px;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
h1 {
text-align: center;
}
button{
display: block;
width: 100%;
padding: 11px;
font-size: 16px;
cursor: pointer;
border: none;
border-radius: 25px;
background-color: rgb(87, 172, 188);
}
button:hover{
background-color: rgba(87, 171, 188, 0.552);
}
#post-container {
margin-top: 30px;
}
.post{
border-bottom: 1px solid black;
}