-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclick.css
85 lines (62 loc) · 1.6 KB
/
click.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
body {
background-color: #f5f5f5;
font-size: 25px;
}
main {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
}
main button.click {
height: 25px;
}
main div {
justify-self: center;
}
.arena {
height: 50vh;
justify-self: center;
align-self: center;
}
.arena button {
}
.upgrades ul {
list-style-type: none;
}
@media only screen {
}
/* Define mobile styles */
@media only screen and (max-width: 40em) {
main div.arena button.click {
height: 110px !important;
width: 180px;
}
}
/* max-width 640px, mobile-only styles, use when QAing mobile issues */
@media only screen and (min-width: 40.063em) {
}
/* min-width 641px, medium screens */
@media only screen and (min-width: 40.063em) and (max-width: 64em) {
main div.arena button.click {
height: 110px !important;
width: 180px;
font-size: 2em;
}
main div.upgrades button {
height: 110px !important;
font-size: 2em;
}
}
/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (min-width: 64.063em) {
}
/* min-width 1025px, large screens */
@media only screen and (min-width: 64.063em) and (max-width: 90em) {}
/* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */
@media only screen and (min-width: 90.063em) {
}
/* min-width 1441px, xlarge screens */
@media only screen and (min-width: 90.063em) and (max-width: 120em) {}
/* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */
@media only screen and (min-width: 120.063em) {
}
/* min-width 1921px, xxlarge screens */