forked from ishinegirl/moodle-mod_flashcards
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfreemode.css
82 lines (82 loc) · 1.98 KB
/
freemode.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
.mod_wordcards_freemode .dropbtn {
font-size: 16px;
cursor: pointer;
padding: .5rem 1rem;
width: 100%;
background-color: inherit;
border: 1px solid #e1e1e1;
border-radius: 3px;
}
.mod_wordcards_freemode .dropdown {
position: relative;
display: inline-block;
width: 100%;
}
.mod_wordcards_freemode .dropdown .fa-chevron-down {
position: absolute;
right: 5px;
top: 10px;
}
.mod_wordcards_freemode .dropdown-content {
display: none;
position: absolute;
width: 100%;
box-shadow: 3px 5px 10px 3px rgba(0, 0, 0, 0.4);
z-index: 1;
transition: display 3000ms ease-in-out;
}
.mod_wordcards_freemode .dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.mod_wordcards_freemode .dropdown-content a.disabled {
color: gray;
}
.mod_wordcards_freemode .dropdown:hover .dropdown-content,
.mod_wordcards_freemode .dropdown .dropdown-content.show {
display: block;
transition: display 3000ms ease-in-out;
}
.mod_wordcards_freemode .dropdown-content a:hover,
.mod_wordcards_freemode a#exit-btn:hover,
.mod_wordcards_freemode a.nav-link:hover {
background-color: #0f6cbf;
color: white;
}
.mod_wordcards_freemode .dropdown-content a.disabled:hover {
background-color: inherit;
color: gray;
}
.mod_wordcards_freemode .dropdown-content a.disabled:hover i {
color: gray;
}
.mod_wordcards_freemode a#exit-btn {
padding: .5rem 1rem;
color: #333;
display: block;
border-top: 1px solid lightgray;
text-decoration: none;
position: absolute;
bottom: 25px;
width: 220px;
}
.mod_wordcards_freemode a.nav-link {
color: #333;
}
.mod_wordcards_freemode .fa.wordpool-chooser-icon {
font-size: 1.1em;
margin-right: 10px;
padding-top: 2px;
color: #777;
float: left;
}
.mod_wordcards_freemode a:hover .fa.wordpool-chooser-icon {
color: #fff;
}
@media (min-width: 768px) {
.col-md-3.buttons-column {
max-width: 250px;
}
}