-
Notifications
You must be signed in to change notification settings - Fork 0
/
tribute.css
103 lines (76 loc) · 1.36 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
font-family: 'Source Sans Pro', sans-serif;
}
#main {
margin: 30px 8px;
padding: 15px;
border-radius: 7px;
background: #DFF0EA;
background-image: linear-gradient(#DFF0EA, #B3B7EE);
}
#img-div {
background-color: #242331;
padding: 9px;
margin: 0;
}
img {
max-width: 100%;
display: block;
height: auto;
margin: 0 auto;
margin-left: auto;
margin-right: auto;
}
.description {
color: #011627;
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 1.2em;
}
#title {
font-size: 2rem;
margin-bottom: 0;
text-align: center;
font-family: sans-serif;
}
figcaption {
color: #EEF5DB;
text-align: center;
letter-spacing: 2px;
}
#tribute-info {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-column-gap: 12px;
}
.info{
background:#F4FFFD;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.more_info {
text-align: center;
font-size: 1.4em;
}
.info p {
padding: 1em;
line-height: 1.6;
}
#footer {
background: white;
text-align: center;
}
hr {
border: 0;
height: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
a:hover {
color: #3EA060;
}
@media (max-width: 434px) {
#tribute-info { grid-template-columns: repeat(1, 1fr);
grid-row-gap: 12px;
}
}