forked from kholkolg/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hra.css
89 lines (80 loc) · 1.2 KB
/
hra.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
#menu{
display: flex;
flex-direction:line;
margin:auto;
justify-content:space-evenly;
}
#obdelnik{
height:600px;
width:100%;
display: flex;
flex-direction:column;
margin:auto;
background-color:black;
z-index: -1;
justify-content:space-evenly;
position:relative;
}
#pointstable{
position:relative;
width:25px;
height:25px;
margin-top: 15px;
border:5px solid #98bf21;
padding:5px;
font-size: 15;
}
.box{
top:140px;
height:30px;
width:30px;
background:#98bf21;
margin:6px;
z-index: 1;
max-width: 40px;
max-height: 40px;
}
#monstrimage{
max-width: 40px;
max-height: 40px;
border: 2px solid red;
border-style: double;
border-radius: 5px;
z-index: 2;
}
#monstr1{
position: absolute;
top: 140px;
}
#monstr2{
position: absolute;
top: 250px;
}
#monstr3{
position: absolute;
top: 360px;
}
#monstr4{
position: absolute;
top: 465px;
}
#monstr5{
position: absolute;
top: 575px;
}
#edge{
width:100%;
height:600px;
border:1px solid #3377af;
padding:5px;
}
.dot {
height: 25px;
width: 25px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
}
.invisible{
display: none;
}