-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtela1.css
66 lines (63 loc) · 1.16 KB
/
tela1.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
@charset "UTF-8";
#form {
padding: 0 14%;
}
#form .form-control {
border-color: #e5e5e5;
border-radius: 2px;
}
#form .form-control:focus {
box-shadow: none;
}
.btn {
background-color: #707070;
border-radius: 2px;
padding: min(15.5%, 18px) min(24%, 27px);
}
.form-check-input {
position: relative;
background-color: #fff;
width: 1rem;
height: 1rem;
border: 0;
}
.form-check-input:focus {
box-shadow: none;
}
.form-check-input:checked {
background-color: #fff;
}
.form-check-input:checked:before {
content: "✓";
position: absolute;
top: 50%;
right: 50%;
font-size: 1.4rem;
font-weight: bold;
color: #878787;
transform: translate(50%, -50%);
}
.my-tooltip {
position: relative;
padding: 0 3px;
border-radius: 50%;
background-color: #9c9b99;
color: #f9f9f9;
font-weight: bold;
font-size: clamp(8px, 0.51vw, 10px);
cursor: default;
}
.my-tooltip:hover::after {
content: attr(tooltip);
position: absolute;
top: 50%;
z-index: 2;
min-width: 100px;
max-width: 200px;
border: 1px solid #000;
border-radius: 5px;
background-color: #f9f9f9;
color: #000;
text-align: center;
transform: translate(10%, -50%);
}