-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.css
58 lines (56 loc) · 1023 Bytes
/
home.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
/**
* 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/[email protected]/RixYeoljeongdo_Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
h1 {
display: flex;
justify-content: center;
font-size: 80px;
font-family: RixYeoljeongdo_Regular;
}
#box {
}
#xy {
display: flex;
justify-content: center;
}
#xsize, #ysize {
background-color: white;
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: white;
height: 45px;
width: 30%;
font-size: 100%;
}
#difficulty {
background-color: white;
height: 30px;
width: 10%;
font-size: 100%;
}
#level {
display: inline-block;
}