-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (96 loc) · 1.6 KB
/
styles.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
background-image: url("images/books4.jpg");
background-position:center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size:cover;
padding: 25px;
font-family: serif;
}
h1 {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}
img {
margin-left: auto;
margin-right: auto;
display: block;
border-radius: 50%;
height: auto;
max-width: 100%;
}
.quote {
font-style: italic;
margin-top: 18px;
}
h1, h2 {
font-family: 'Poppins', sans-serif;
}
h2 {
margin-top: 12px;
}
h1, h2, .quote {
text-align: center;
}
hr {
height: 1px;
background-color: #4B0082;
border-color: #4B0082;
}
.content {
width: 85%;
background-color: cornsilk;
margin-left: auto;
margin-right: auto;
padding: 40px;
max-width: 450px;
border-radius: 25px;
}
.item p {
display: inline-block;
font-size: 16px;
margin-top: 0;
margin-bottom: 5px;
}
.title {
text-align: left;
width: 80%;
}
.date {
text-align: right;
width: 20%;
}
.checked {
color: orange;
}
.btm-line {
margin-top: 10px;
}
/*FOOTER*/
footer {
font-size: 18px;
text-align: center;
margin-bottom: -20px;
}
.cite {
font-size: 15px;
font-weight: 700;
}
a {
color: blue;
}
a:hover {
color: #EF0107;
}
a:active {
color: #32de84;
}
a:visited {
color: #720e9e;
}
@media (max-width: 768px) {
body {
background: url("images/books4.jpg");
}
}