-
Notifications
You must be signed in to change notification settings - Fork 25
/
main.css
121 lines (101 loc) · 1.74 KB
/
main.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
120
121
* {
margin: 0;
padding: 0;
font-family: "YouYuan";
}
body {
background: #d7d3b6;
}
.container {
/*padding-top: 30px;*/
width: 100%;
height: 100%;
}
.main {
width: 100%;
height: 100%;
margin: 0 auto;
overflow: hidden;
text-align: center;
}
.main .gameName {
font-size: 35px;
font-weight: bold;
}
.main .maxScore {
font-size: 20px;
}
.main .maxScore span {
color: red;
font-weight: bold;
}
.main .gameBody {
/*width: 100%;*/
height: 50%;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 15px;
background: #999;
border-radius: 8px;
padding-top: 5px;
padding-bottom: 5px;
}
.main .gameBody .row {
display: flex;
justify-content: space-between;
}
.main .gameBody .row .item {
width: 70px;
height: 70px;
border-radius: 10px;
background: #fff;
text-align: center;
line-height: 70px;
font-size: 30px;
font-weight: bold;
margin: 5px;
color: #666;
font-family: "microsoft yahei";
}
.main .gameRule {
font-size: 16px;
font-weight: bold;
margin-top: 5px;
}
.main .gameScore {
font-size: 20px;
font-weight: bold;
margin-top: 0px;
}
.main .gameScore span {
color: red;
font-size: 30px;
}
.main .scoreAndRefresh {
display: flex;
justify-content: space-around;
width: 280px;
margin: 0 auto;
}
.main .scoreAndRefresh .refreshBtn {
height: 30px;
margin-top: 8px;
}
.modal {
margin-top: 150px;
}
.modal .modal-header h4 {
text-align: left;
font-weight: bold;
}
.modal .modal-dialog {
width: 300px;
margin: 0 auto;
}
.modal .modal-body {
font-size: 18px;
font-weight: bold;
color: red;
}