forked from yogshirsath/moodle-local_disablerightclick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
41 lines (40 loc) · 870 Bytes
/
styles.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
.disabler-toaster.toaster-container {
position: fixed;
width: 100%;
top: 1vw;
z-index: 140002;
left: 0;
opacity: 0;
text-align: center;
transition: top 0.3s linear, opacity 0.3s linear;
display: none;
}
.disabler-toaster.toaster-container.fade {
top: 6vw;
opacity: 1;
}
.disabler-toaster.toaster-container.show {
display: block;
}
.disabler-toaster.toaster-container .toaster-message {
padding: 1rem 2rem;
color: white;
border-radius: 2px;
background-color: #424242;
}
.disablerightclick-support .message {
margin-bottom: 2rem;
}
.disablerightclick-support .icon {
width: 50px;
height: 50px;
}
.disablerightclick-support .buttons-list {
margin-top: 2rem;
margin-left: 1rem;
margin-right: 1rem;
margin-left: auto;
}
.disablerightclick-support .center {
text-align: center;
}