-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.css
68 lines (57 loc) · 868 Bytes
/
content.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
#tooltip,#error-box {
background-color: white;
border: 2px solid black;
border-radius: 10px;
padding: 10px;
width: 330px;
padding-bottom: 5px;
color: #494949;
z-index: 10000;
position: fixed;
left: 30vw;
top:30vh;
box-shadow: 0px 0px 8px 2px #888888;
}
#tooltip span{
font-weight: bold;
margin: 0 auto;
color: #272827;
}
#tooltip-icon,#error-close{
float: right;
}
#tooltip-type{
font-style: italic;
font-size: 15px;
}
#tooltip-title{
font-size: 20px;
}
.tooltip-group{
margin: 5px auto;
}
.fa{
font-weight: bold !important;
font-size: 15px !important;
cursor: pointer;
}
.fa-angle-left{
float: left;
}
.fa-angle-right{
float: right;
}
.fa-microphone{
margin-left: 15px;
}
#tooltip hr{
border:1px solid black;
}
#error-title{
font-weight: bold;
text-align: center;
font-size: 20px;
}
#error-sub-heading{
font-weight: bold;
}