-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (72 loc) · 1.96 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fresh TN</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
<link rel="icon" href="favicon.png">
<style media="screen">
html, body {
padding: 0;
margin: 0;
background-color: #c7c7c7;
}
.produce {
border-bottom: 5px solid;
margin-bottom: 16px;
margin-bottom: 0;
padding: 0 0 16px 0;
}
.produce-name {
font-size: 36px;
color: white;
padding: 16px 16px 0 16px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: left;
word-wrap: break-word;
}
.season-range {
font-size: 16px;
padding: 0 16px 0 16px;
color: white;
font-family: 'Roboto', sans-serif;
text-align: left;
word-wrap: break-word;
}
.link {
font-size: 18px;
padding: 24px 16px 0 16px;
font-family: 'Roboto', sans-serif;
text-align: left;
word-wrap: break-word;
font-weight: bold;
}
.link > a {
color: white;
}
.link > a:hover {
text-decoration: none;
}
.circle {
float: right;
margin: 15px 15px 0 0;
border-radius: 50%;
background: #fff;
height: 84px;
width: 84px;
}
.circle > img {
margin: 10px;
height: 64px;
width: 64px;
}
</style>
</head>
<body>
<script src="index.js"></script>
</body>
</html>