-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOJstart.css
93 lines (74 loc) · 1.44 KB
/
BOJstart.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
* {
margin:0;
padding:0;
box-sizing: border-box;
}
#logotext {
position: absolute;
top:50px;
left:0;
right: 0;
text-align: center;
font-size: 35px;
font-family: fantasy;
}
#username {
position: absolute;
top:200px;
font-size: 20px;
border: none;
border-bottom: 1px solid;
outline: none;
font-family: monospace;
}
#username[type="text"] {
background-color: transparent;
}
#monlist {
position: absolute;
top:300px;
left:0;
right: 0;
margin: auto;
text-align: center;
display: flex;
width: 350px;
flex-wrap: wrap;
justify-content: space-between;
}
.mon {
width:100px;
margin: 5px;
}
#enter {
position: absolute;
top: 600px;
right:0;
left:0;
margin:auto;
width:200px;
height:50px;
}
.mon:hover {
border: 1px solid;
cursor: pointer;
border-color: #ddd;
box-shadow: 0 0 10px inset #f1f1f1, 0 0 10px #ddd;
}
body {
background-image: url(pics/secondbg.jpg);
background-size: cover;
background-repeat: no-repeat;
overflow: hidden;
}
#main {
display:flex;
justify-content:center;
background-color: rgba(255, 255, 255, 0.459);
width: 400px;
height:754px;
padding: 20px 0 20px 0;
border-radius: 5%;
background-clip: content-box;
margin: auto;
}