-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (106 loc) · 2.16 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
117
118
119
120
121
122
123
124
:root {
--main-bg-color: #d1d1d1;
--gray: #262626;
--empty-box: #e8e8e8;
--filled-box: #d1d1d1;
}
body {
background: var(--main-bg-color);
font-size: large;
font-weight: bolder;
font-family: Helvetica, sans-serif;
}
.unselectable {
-webkit-user-select: none; /* Safari */
-webkit-user-drag: none;
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
user-drag: none;
}
.title {
display: flex;
justify-content: center;
align-content: center;
align-self: center;
font-size: 100px;
color: var(--gray);
padding-top: 27vh;
padding-bottom: 3vh;
transition: padding-top .6s ease-in-out;
}
.title-top {
padding-top: 2vh;
}
.mine-icon {
width: 100px;
height: 100px;
padding-left: 30px;
padding-right: 30px;
padding-top: 8px;
}
.button {
width: 130px;
height: 40px;
background-color: transparent;
outline: var(--gray) solid;
border-radius: 6px;
border: none;
margin-right: 2vw;
font-size: 120%;
font-weight: normal;
box-shadow: inset 0 0 0 0 var(--gray);
transition: box-shadow .25s ease-in-out, color .25s ease-in-out;
}
.button:hover {
box-shadow: inset 0 -40px 0 0 var(--gray);
color: #ffffff;
cursor: pointer;
}
.buttons {
display: grid;
justify-content: center;
align-content: center;
align-self: center;
height: auto;
}
.difficulty-panel {
max-width: 30%;
display: inline-block;
padding-top: 2vh;
}
.difficulty-info {
width: 85%;
text-align: center;
font-weight: normal;
font-size: 16px;
opacity: 20%;
margin-top: 10px;
}
.how-to-play-button-container {
justify-content: center;
align-content: center;
align-self: center;
opacity: 20%;
margin-left: auto;
margin-right: auto;
padding-top: 10vh;
}
.how-to-play-button {
width: 130px;
height: 30px;
font-size: 100%;
}
.github-logo {
position: fixed;
right: 0;
bottom: 0;
width: 6vh;
height: 6vh;
padding: 2.5vh;
opacity: 45%;
transition: opacity .3s;
}
.github-logo:hover {
opacity: 80%;
}