-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (88 loc) · 1.57 KB
/
style.css
File metadata and controls
101 lines (88 loc) · 1.57 KB
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
/* variables */
:root {
--bg-color: rgb(33,143,150);
--font-color: rgb(253,227,200);
--secondary-color:white;
}
/* global & fonts */
h1 {
font-size: 2rem;
}
p {
font-size: 0.7rem;
line-height: 3rem;
}
* {
box-sizing: border-box;
font-family: 'Zen Dots', cursive;
}
body, html {
margin: 0;
padding: 0;
overflow: hidden;
background: var(--bg-color);
color: var(--font-color);
}
/* contents */
.container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-content: space-between;
overflow-y: hidden;
}
.header {
text-align: center;
padding-top: 20px;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
color:black;
}
.footer-text {
padding-left: 5px;
}
.footer-line {
height: 3px;
background:gray;
}
/* buttons */
.button-container {
padding-top: 25vh;
display: flex;
flex-direction: row;
justify-content: space-around;
height:60vh;
}
.button {
width:35vw;
height: 35vw;
border: 1px solid var(--font-color);
border-radius: 50%;
text-align: center;
display: inline-block;
line-height: 35vw;
transition: all .2s;
background: var(--bg-color);;
color: var(--font-color);
margin:50px;
}
#onions {
background: rgb(15,58,52);
}
#tomatoes {
background: rgb(253,101,98);
}
.button:hover {
transform: scale(1.1);
box-shadow: 0 10px 40px rgba(253,227,200, 0.8);
}
.btn:active {
transform: scale(1.1);
box-shadow: 0 5px 40px rgba(253,227,200, 0.8);
}