-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (74 loc) · 1.21 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
95
96
97
body {
background-image: radial-gradient(beige, white);
background-repeat: no-repeat;
}
main {
margin: 0 10%;
font-family: 'Roboto', sans-serif;
}
.header {
opacity: 0.8;
color: whitesmoke;
text-align: center;
background-color: black;
margin: 0;
height: 60px;
border-radius: 15px;
}
.posts {
margin-top: 30px;
}
.post-adder {
padding-bottom: 30px;
border-bottom: dashed;
}
h1 {
position: relative;
top: 50%;
transform: translateY(-50%);
}
h1,
h3 {
margin: 0;
padding: 0;
}
h3 {
font-size: 15px;
}
.section-header {
font-size: 20px;
margin: 5px 0px 15px;
color: brown;
font-weight: bolder;
}
.box-it {
border: solid black 1.5px;
margin: 0px 0px 10px;
padding: 3px;
background-color: azure;
}
.posts .box-it:hover{
background-color: aquamarine;
transition-duration: 1s;
}
#title {
padding-right: 30px;
min-width: 150px;
font-weight: bolder;
}
#post {
min-height: 5em;
}
.posts .box-it p {
padding: 0px 6px;
}
span {
display: inline-block;
}
#button {
padding: 0 20px;
background-color: lightgrey;
border-radius: 5px;
font-size: 20px;
color: black;
}