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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
body {
font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #FCFCFC;
}
img {
max-width: 100%;
height: auto;
max-height: 40rem;
vertical-align: middle;
border: 0;
}
header,
footer {
margin: 4rem 0;
text-align: center;
}
.site-title {
margin-top: 2rem;
}
.entry-title {
margin-top: 2rem;
margin-bottom: 0;
}
.list-title {
margin-top: 2rem;
}
.entry-title a {
text-decoration: none;
}
.entry-meta {
font-size: 1.7rem;
color: #888;
}
.footer-link {
margin: 2rem 0;
}
.footer-link a {
text-decoration: none;
}
.hr {
height: 1px;
margin: 2rem 0;
background: #E1E1E1;
background: -webkit-gradient(linear, left top, right top, from(white), color-stop(#E1E1E1), to(white));
background: -webkit-linear-gradient(left, white, #E1E1E1, white);
background: linear-gradient(to right, white, #E1E1E1, white);
}
.card-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.card-wrapper {
align-self: flex-end;
height: 100%;
max-width: 400px;
margin: 2rem 1rem;
}
.card {
border-radius: 1rem;
box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);
transition: 0.1s;
}
.card:hover {
box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.2);
}
.card-content {
padding: 1.5rem 2rem;
}
@media (min-width: 800px) {
.card-content {
height: 150px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
}
.card-date {
float: right;
}
.card-title {
font-size: 2.5rem;
}
.card-image {
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
height: 300px;
width: 400px;
object-fit: cover;
}
.card-text {
}
.card-link {
font-weight: bold;
}
.menu-container {
text-align: center;
}
.button {
border: none;
border-bottom: 1px dashed #888;
border-radius: 0;
height: 4rem;
width: 15rem;
padding: 0;
}
.button:hover {
background-color: #E1E1E1;
border-bottom: 1px solid #888;
}
|