-
Notifications
You must be signed in to change notification settings - Fork 218
/
style.css
73 lines (63 loc) · 1.05 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
/* Main Stylesheet */
* {
color: #3d3d3d;
font-family: 'Arial', sans-serif;
}
body {
align-items: center;
background-color: #EFECCA;
display: grid;
justify-items: center;
margin: 100px 0 0 0;
width: 100%;
}
header {
background-color: #D9D281;
filter: drop-shadow(0 -5px 9px rgba(0,0,0,0.7));
margin: 0;
position: fixed;
text-align: center;
top: 0;
width: 100%;
}
ul {
display: grid;
justify-items: center;
margin: 0;
padding: 0;
}
/* Web Component Copy - Start Here */
.entry {
background-color: white;
border-radius: 6px;
list-style-type: none;
margin-bottom: 30px;
max-width: 700px;
padding: 20px;
width: 80%;
}
.entry-audio {
margin: 10px 0;
width: 95%;
}
.entry-content {
font-size: 20px;
margin: 10px 0;
text-indent: 30px;
}
.entry-date {
color: rgb(163, 163, 163);
font-size: 20px;
margin-top: 3px;
margin-bottom: 20px;
}
.entry-image {
height: 100%;
max-height: 350px;
max-width: 550px;
}
.entry-title {
margin-bottom: 5px;
margin-top: 5px;
}
/* Web Component Copy - Stop Here */