-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathliterary.css
More file actions
70 lines (61 loc) · 1.2 KB
/
literary.css
File metadata and controls
70 lines (61 loc) · 1.2 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
@import url("https://fonts.googleapis.com/css?family=Libre+Baskerville");
body {
background-color: #1F215E;
font-family: "Libre Baskerville";
font-size: 30px;
background-image: url(http://codingbychad.com/Content/images/starryNight.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}
.quoteArea {
background-color: rgba(39, 63, 156, 0.6);
color: #E7DAAE;
padding-top: 30px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 25px;
border-radius: 20px;
}
.quote {
font-size: 2rem;
}
.title {
font-size: 3rem;
font: small-caps;
color: #121526;
padding: 40px;
background-color: rgba(61, 101, 158, 0.6);
display: block;
text-align: center;
}
.author {
font-weight: bold;
font-size: 1.5rem;
display: block;
}
.source {
font-style: italic;
font-size: 1.5rem;
display: block;
}
footer {
padding-top: 10px;
bottom: 0;
font-size: 1.25rem;
font-weight: bold;
color: #E7DAAE;
display: block;
}
a,
a:hover,
a:visited,
a:any-link {
text-decoration: none;
font-size: 1.25rem;
color: #E7DAAE;
cursor: pointer;
}
.clear {
clear: both;
}