Welcome to mirror list, hosted at ThFree Co, Russian Federation.

kitab.css « css « static - github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e6e764dd16e7e311c496eb7b9d87c4d98113d93d (plain)
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
* {
  font-family: "Roboto", sans-serif;
}
body {
  background-color: #f3f3ef;
}
.navMenu {
  color: #007bff !important;
  font-size: 1.5em;
}
.navMenu:hover {
  color: #0056b3 !important;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
.book-cover {
  color: white;
  background-color: #24242499;
}
.bookTitle {
  position: absolute;
  top: 2%;
  left: 5%;
}
.bookAuthor {
  position: absolute;
  bottom: 2%;
  right: 5%;
}
.toTop {
  position: fixed;
  bottom: 10px;
}

.dropbtn {
  color: #007bff;
}
.dropbtn:hover {
  color: #0056b3;
}
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 280px;
  max-width: 75%;
  z-index: 1;
}
.dropdown {
  cursor: pointer;
  position: relative !important;
  display: inline-block !important;
}
.dropdown:hover {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.hanging {
  padding-left: 15px;
  text-indent: -15px;
}
#copiedMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  transition: all 1s;
}