-
Notifications
You must be signed in to change notification settings - Fork 0
/
telefone.css
64 lines (54 loc) · 1.11 KB
/
telefone.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
#phone-container {
background-color: #333;
border-radius: 10px;
overflow: hidden;
width: 300px;
}
#phone-screen {
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
padding: 10px;
font-size: 2rem;
height: 3rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.phone-status {
font-size: 1rem !important;
}
#phone-buttons {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 5px;
padding: 10px;
}
#phone-buttons button {
font-family: 'Montserrat', sans-serif;
width: 100%;
padding: 10px;
font-size: 2rem;
cursor: pointer;
border: none;
}
.btnCall {
grid-column: span 2;
}
#phone-buttons button:active {
background-color: #aaa;
}
.bi-mic-fill,
#btnCall .bi-telephone-fill {
color: green;
}
.bi-mic-mute-fill,
#btnEndCall .bi-telephone-fill,
.bi-x-lg {
color: red;
}
#btnEndCall .bi-telephone-fill::before {
transform: rotate(135deg) translate(3px, -3px);
}