forked from aaronkim00/WEB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
118 lines (103 loc) · 2.07 KB
/
home.css
File metadata and controls
118 lines (103 loc) · 2.07 KB
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
/**
* IDEV Project 'WEBStudy' - Minesweeper
* Copyright (c) 2021 김민우, 김예린, 이종현
* All Rights Reserved
*
* home.css
* stylesheet for home.html
*/
@font-face {
font-family: 'RixYeoljeongdo_Regular';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2102-01@1.0/RixYeoljeongdo_Regular.woff')
format('woff');
font-weight: normal;
font-style: normal;
}
html {
background-color: #dce2f0;
color: #50586c;
}
h1 {
display: flex;
justify-content: center;
font-size: 80px;
font-family: 'RixYeoljeongdo_Regular';
}
#xy {
display: flex;
justify-content: center;
}
input[type='checkbox'] {
-webkit-appearance: none;
appearance: none;
position: relative;
width: 16px;
height: 16px;
margin: 7px;
cursor: pointer;
outline: none !important;
border: 1px solid #50586c;
border-radius: 2px;
background: #dce2f0;
transform: translate(2px, 50%);
}
input[type='checkbox']::before {
content: '\2713';
position: absolute;
top: 50%;
left: 50%;
overflow: hidden;
transform: scale(0) translate(-50%, -50%);
line-height: 1;
}
input[type='checkbox']:hover {
border-color: #000000;
}
input[type='checkbox']:checked {
background-color: #50586c;
border-color: rgba(255, 255, 255, 0.3);
color: white;
}
input[type='checkbox']:checked::before {
border-radius: 2px;
transform: scale(1) translate(-50%, -50%);
}
#second_floor {
height: 30px;
line-height: 30px;
}
#xsize,
#ysize {
background-color: #dce2f0;
color: #50586c;
width: 30%;
height: 45px;
margin: 10px;
font-size: 120%;
text-align: center;
}
#second_floor,
#third_floor {
width: 80%;
margin: 0 auto;
text-align: center;
margin-top: 20px;
}
#play {
display: inline-block;
background-color: #dce2f0;
color: #50586c;
height: 45px;
width: 30%;
font-size: 100%;
}
#difficulty {
background-color: #dce2f0;
color: #50586c;
height: 30px;
width: 10%;
font-size: 100%;
}
#level {
display: inline-block;
}