-
Notifications
You must be signed in to change notification settings - Fork 0
/
tribute.css
86 lines (71 loc) · 1.22 KB
/
tribute.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
html {
box-sizing: border-box;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin: 0px;
background-color: #65686b2d;
position: relative;
}
#flex-container,
#main {
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
}
.column-one {
padding: 20px;
position: relative;
}
#tribute-info {
padding: 20px;
}
#title {
font-size: 2.55em;
text-align: center;
font-weight: 600;
}
.title {
text-align: center;
font-size: 1.25rem;
font-weight: normal;
}
section {
background-color: #8f91924b;
color: #232425de;
margin: 0 auto;
width: 30%;
border-radius: 20px;
}
p.intro {
margin: 1.05rem;
padding-top: 20px;
text-align: center;
}
ul>li {
list-style-type: circle;
line-height: 1.85rem;
}
#tribute-link {
text-decoration: none;
color: rgba(43, 43, 221, 0.795);
}
#image {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto;
}
figcaption {
text-align: center;
font-style: italic;
font-weight: lighter;
}
.conclusion {
font-weight: 100;
text-align: center;
}
@media (max-width: 662px) {
section {
width: 100%;
}
}