-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (67 loc) · 1.2 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
.main {
background: url(assets/bg.jpg) center 50% no-repeat;
height: 85rem;
}
.main_field {
width: 80%;
height: 40rem;
background-color: rgba(55, 55, 55, 0.6);
box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.5);
margin:15rem 10% 0 10%;
padding-bottom: 5rem;
border: 3px solid #ad7835;
overflow-y: auto;
}
.main_field ul {
width: 82%;
margin:5rem 10% 5rem 8%;
list-style-image:url(assets/list.png);
}
.main_field ul li {
height: 5rem;
margin-bottom: 2rem;
padding-top: 0.8rem;
padding-left: 1rem;
border: 1px solid #ad7835;
border-radius: 10px;
font-size: 2.2rem;
color: #fff;
}
.main_btn{
width: 25rem;
height: 5rem;
margin-top: 2rem;
border: 3px solid #ad7835;
border-radius: 10px;
background-color: rgba(0,0,0,.1);
outline: none;
color: #fff;
font-size: 1.5rem;
}
.popup {
position: absolute;
display: none;
width: 40%;
height: 20rem;
top:0;
margin:20rem 30% 0 30%;
background-color: rgba(173,120,53, .4);
text-align: center;
border: 2px solid #000;
border-radius: 15px;
z-index: 111;
}
.popup p {
line-height: 19.9rem;
font-size: 3rem;
font-weight: bold;
color: #000;
}
.popup .close {
position: absolute;
top:0.5rem;
right: 1rem;
color:#000;
opacity: 1;
box-shadow: none;
}