-
Notifications
You must be signed in to change notification settings - Fork 0
/
lastDay.css
119 lines (91 loc) · 1.46 KB
/
lastDay.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* Color Palette for website */
:root {
--background-color: #DDA059;
--primary:#;
--accent-1: #FFD921;
--accent-1-light: #FFEA80;
--accent-2: #59C9F1;
--accent-2-light: #8AD8F5;
}
html {
background-color: var(--background-color);
}
a {
text-decoration: none;
color: black;
}
header {
background-color: var(--accent-1);
width: fit-content;
margin: 32px auto;
display: flex;
border-radius: 16px;
border-style: solid;
padding: 32px;
}
header>img {
width: 100px;
height: 100px;
}
header>h1 {
padding: 0px;
margin: 0px;
font-size: 64px;
margin-left: 48px;
}
footer {
width: 100%;
margin: 16px 0px;
}
footer>p {
width: fit-content;
margin: auto;
}
main {
width: 70%;
height: fit-content;
margin: auto;
background-color: var(--accent-1);
padding: 16px;
/* Border stuff */
border-style: double;
border-width: 4px;
border-radius: 16px;
}
main>h1 {
width: fit-content;
margin: auto;
grid-column: 1 / span 5;
padding: 16px;
}
.seasons {
display: grid;
grid-template-columns: 30% 3.5% 30% 3.5% 30%;
grid-template-rows: 15% 85%;
justify-content: center;
}
.title {
text-align: center;
}
.season {
background-color: var(--accent-1-light);
height: fit-content;
padding: 16px;
border-style: solid;
border-radius: 16px;
border-width: 3px;
}
.crop {
height: 50px;
display: grid;
grid-template-columns: 33% 33% 33%;
padding: 16px;
margin: 2px;
border-style: solid;
}
.crop>img {
margin: auto;
}
.crop>p{
margin: auto;
}