-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
75 lines (61 loc) · 1.08 KB
/
main.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
body{
background-image: url("http://wapfile.desktx.com/7681280/1216/161216ha2cibrbb02.jpg");
background-repeat: no-repeat, repeat;
background-color:rgb(42, 43, 143);
background-size: cover;
opacity: 0.8;
/* color: azure; */
}
.modal, .modal-open{
opacity: 1;
}
h1{
color: azure;
}
h2{
padding: 10px;
}
.tooltip-inner{
background-color: rgb(5, 5, 114);
}
#text{
color: black;
}
#info{
position: absolute;
bottom: 10px;
right: 10px;
color: black;
}
.popover{
color:black;
}
#score{
position: absolute;
left: 20px;
}
.transfrom {
animation: slide 0.3s forwards;
-webkit-animation: slide 0.3s forwards;
}
@keyframes slide {
0% {
transform: rotateY(0deg);
}
50% {
transform: rotateY(90deg);
}
100% {
transform: rotateY(0deg);
}
}
.btn{
opacity: 50%;
overflow-wrap: break-word;
white-space: normal;
}
/*
.btn:hover {
background-color: rgb(152, 240, 155);
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
} */