-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (114 loc) · 1.95 KB
/
style.css
File metadata and controls
127 lines (114 loc) · 1.95 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
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
* {
box-sizing: border-box;
}
body {
margin: 0px;
background-color: #331419;
}
.column-container {
display: flex;
width: 100%;
height: 100vh;
min-width: 650px;
}
.column {
margin: 10px;
margin-top: 0px;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
}
.container {
width: 100%;
height: calc(100vh - 40px);
}
.container.left {
margin-top: 25px;
margin-left: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.column-header {
font: bold 33px lucida;
letter-spacing: 2px;
position: relative;
background-color: #E39695;
padding: 8px 8px 0px 8px;
text-decoration: underline overline #331419;
top: 20px;
border-radius: 5px;
}
#big_coffee {
cursor: pointer;
transition: 0.5s;
transform: rotate(.5turn)
}
#big_coffee:hover {
filter: brightness(120%);
transform: scale(1.1);
}
.counter-container {
font-size: 60px;
margin: 10px;
font-family: cursive;
color: #B3A394;
}
#coffee_counter {
color: #DB7589;
font-size: 1.3em;
}
.cps-container {
font-size: 25px;
font-family: fantasy;
font: bold;
color: #E39695;
}
#cps {
color: rgb(33, 134, 112)
}
#producer_container {
padding: 10px;
overflow: auto;
border: 2px dotted #753742;
border-radius: 5px;
}
.producer {
font-family: tahoma;
font-size: 20px;
color: #E4B1AB;
margin-bottom: 5px;
padding: 10px;
border: 2px solid #B3A394;
border-radius: 4px;
display: flex;
justify-content: space-between;
}
.producer:hover {
background-color: rgb(33, 134, 112)
}
.producer-column {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.producer-title {
font-size: 1.4em;
font-variant: small-caps;
display: inline;
}
.producer button {
font-size: 15px;
width: 50px;
color: #DF7373;
text-transform: uppercase;
}
.producer button:hover {
background-color: rgb(247, 193, 187);
transform: scale(1.1)
}
#cost {
transition: 0.3s
}