-
Notifications
You must be signed in to change notification settings - Fork 0
/
animals_template.html
76 lines (67 loc) · 1.81 KB
/
animals_template.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@gray-darker: #444444;
@gray-dark: #696969;
@gray: #999999;
@gray-light: #cccccc;
@gray-lighter: #ececec;
@gray-lightest: lighten(@gray-lighter,4%);
html {
background-color: #ffe9e9;
}
h1 {
text-align: center;
font-size: 40pt;
font-weight: normal;
}
body {
font-family: 'Roboto','Helvetica Neue', Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 400;
letter-spacing: 0;
padding: 1rem;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: "liga" on;
width: 900px;
margin: auto;
}
.cards {
list-style: none;
margin: 0;
padding: 0;
}
.cards__item {
background-color: white;
border-radius: 0.25rem;
box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25);
overflow: hidden;
padding: 1rem;
margin: 50px;
}
.card__title {
color: @gray-dark;
font-size: 1.25rem;
font-weight: 300;
letter-spacing: 2px;
text-transform: uppercase;
}
.card__text {
flex: 1 1 auto;
font-size: 0.95rem;
line-height: 2;
margin-bottom: 1.25rem;
}
</style>
</head>
<body>
<h1>My Animal Repository</h1>
<ul class="cards">
__REPLACE_ANIMALS_INFO__
</ul>
</body>
</html>