generated from Czechitas-podklady-WEB/cviceni-vyskakovaci-okno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
56 lines (49 loc) · 853 Bytes
/
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
body {
font: 16px/1.5 sans-serif;
position: relative;
}
.modal {
width: 50vw;
height: 40vh;
border: 15px solid #5bcef3;
background-color: #b4eafb;
border-radius: 10px;
font-size: 30px;
position: relative;
left: 200px;
}
button {
width: 80px;
height: 25px;
position: absolute;
}
.exit {
color: black;
width: 30px;
border-radius: 3px;
right: 0px;
margin: 5px;
}
.help {
width: 20vw;
height: 10vh;
border: 15px solid #5bcef3;
background-color: #b4eafb;
border-radius: 10px;
font-size: 15px;
position: fixed;
bottom: 0px;
left: 0px;
}
.help p {
margin-top: 30px;
text-align: center;
}
.ok {
background-color: #28a745;
color: white;
position: absolute;
bottom: 0px;
left: calc(50% - 73px / 2);
}
/* sem přijdou tvoje styly */