-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (94 loc) · 1.37 KB
/
style.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
* {
font-family: "Noto Serif", Times, serif;
}
.gamearea {
padding: 10;
margin-top: 2px;
margin-bottom: 2px;
min-height: 200px;
border-color: red;
border-style: solid;
border-width: 2px;
border-radius: 10px;
}
.gamearea.info {
min-height: 0px;
}
.gamearea.vert {
vertical-align: top;
display: table-cell;
white-space: nowrap;
}
.gamearea.vert.left {
min-width: 168px;
}
.gamearea.vert.right {
width: 100%;
}
.hanafudacard {
height: 150px;
width: 92px;
margin: 2;
display: inline-block;
}
.hidden {
background-color: black;
}
.clickable {
height: inherit;
width: inherit;
padding: 0;
border: none;
background: none;
}
.information {
margin-right: 20px;
}
td.information {
padding-right: 20px;
}
h1, h3 {
margin-top: 0px;
margin-bottom: 10px;
}
#debug h3 {
margin-top: 10px;
margin-bottom: 10px;
}
p {
margin-top: 0px;
margin-bottom: 0px;
}
@media screen and (max-width: 980px) {
.button {
width: -webkit-fill-available;
width: -moz-available;
height: 16vw;
font-size: 4vw;
}
.gamearea {
min-height: 42vw;
}
.gamearea.vert, .gamearea.vert.left, .gamearea.vert.right {
display: block;
margin-bottom: 0vw;
white-space: normal;
width: auto;
}
.hanafudacard {
height: 32.6vw;
width: 20vw;
}
.information {
font-size: 4vw;
}
td.information {
padding-right: 2vw;
}
h1 {
font-size: 6vw;
}
h3 {
font-size: 4vw;
}
}