-
Notifications
You must be signed in to change notification settings - Fork 0
/
a3.css
114 lines (96 loc) · 2.09 KB
/
a3.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
body{
margin: 0px;
}
h1{
text-align: center;
}
#diff-chooser{
margin-left: 1em;
display: flex;
}
#difficulty{
border-radius: 5px;
border-style: none;
background-color: white;
margin-left: 1em;
}
.slide-container {
width: 100%;
display: none;
}
.slide-container>span{
margin-left: 1em;
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
border-radius: 5px;
appearance: none;
width: 10%; /* Full-width */
height: 10px; /* Specified height */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
display: inline;
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 10px; /* Set a specific slider handle width */
height: 10px; /* Slider handle height */
background: #4CAF50; /* Green background */
border-radius: 50%;
cursor: pointer; /* Cursor on hover */
}
.grid-container {
display: table;
margin:auto;
/* grid-template-columns: auto auto auto;*/
background-color: #2196F3;
width: 144px;
height: 144px;
}
.grid-item {
background-color: rgba(255, 255, 255, 0.8);
border-style: outset;
text-align: center;
border-width: 2px;
width: 12px;
height: 12px;
display: inline-block;
user-select: none; /* CSS3 (little to no support) */
-ms-user-select: none; /* IE 10+ */
-moz-user-select: none; /* Gecko (Firefox) */
-webkit-user-select: none; /* Webkit (Safari, Chrome) */
}
.score-item{
margin:auto;
}
#score-container{
margin: auto;
display: table;
}
#setting{
background-color: gray;
display: flex;
padding: 0.5em 0px;
}
#board-header{
margin: auto;
display: flex;
background-color: #2196F3;
}
#reset-face{
margin:auto;
width: 20px;
border-style: outset;
cursor: pointer;
background-color: white;
}
.board-info{
background-color: white;
border-style: groove;
font-size: larger;
}