-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (91 loc) · 1.81 KB
/
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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.container-fluid.custom-container {
margin-left: 4%;
width: 92%;
}
/* width */
::-webkit-scrollbar {
width: 0px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
#codeBox1,
#codeBox2,
#codeBox3,
#codeBox4,
#codeBox5,
#codeBox6 {
height: 45px;
width: 45px;
font-size: 25px;
text-align: center;
border: 1px solid #000000;
margi
}
.chats tr th:hover,
.info tr:hover th,
.info tr:hover td,
.edit tr:hover th,
.edit tr:hover td,
.dropdown-menu label:hover,
.stats tr:hover td,
.savecontact tr:hover,
table.signInTable tr:hover td,
table.groupTable tr:hover td,
table.tableMember tr:hover th,
table.tableCC tr:hover th {
background-color: rgb(70, 70, 70);
}
.bg-active {
background-color: rgb(70, 70, 70);
}
div.status {
margin-top: 20px;
margin-right: 27%;
float: right;
position: relative;
}
.blink {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0.0;
}
}
body {
background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcS4XzWoTkRoU-OYhOebGbbyo53QbB-Xd9zyHw&usqp=CAU");
background-size: cover;
}
i {
cursor: pointer;
}
#rating {
font-size: 0;
}
#rating span {
font-size: 40px;
}
#rating span::before {
content: "☆";
}
#rating span.active::before {
content: "★";
}
#rating span:hover {
cursor: pointer;
}