-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (79 loc) · 1.23 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
html {
font-size: 10px;
color: rgb(0, 0, 0, 0.8);
}
body {
font-family: "Roboto", sans-serif;
font-size: 1.7em;
margin: 0;
background-color: lightgrey;
padding: 0.5em;
}
#main {
background-color: white;
padding: 1em;
border-radius: 5px;
padding: 2em;
}
header {
text-align: center;
font-family: "Bangers", cursive;
font-size: 1em;
}
#title {
margin: 0;
font-size: 2.5em;
text-transform: uppercase;
}
#img-div {
margin: 0;
background-color: #163265;
color: whitesmoke;
border-radius: 5px;
font-weight: 100;
text-align: center;
font-size: 0.7em;
padding: 0.2em;
}
#image {
/* responsively resize*/
display: block;
max-width: 100%;
/* centered within its parent element.*/
height: auto;
margin: auto;
}
#img-caption {
margin: 4px 0 4px 0;
}
#tribute-info {
margin: auto;
font-weight: 100;
text-align: center;
margin-top: 40px;
}
footer {
text-align: center;
font-size: small;
}
ul {
text-align: justify;
word-spacing: normal;
white-space: pre-line;
}
@media (min-width: 768px) {
body {
padding: 0;
}
#img-caption {
font-size: 1.3em;
}
#tribute-info {
max-width: 65%;
margin-top:0;
}
#img-div {
max-width: 80%;
margin: auto;
}
}