-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (49 loc) · 896 Bytes
/
style.css
File metadata and controls
51 lines (49 loc) · 896 Bytes
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
.txt {
background-color: rgba(225, 225, 225, 0.5);
margin: auto;
margin-top: 100px;
height: 200px;
width: 850px;
border-radius: 20px;
}
.visores {
padding-top: 40px;
margin-left: 10px;
margin-right: 10px;
display: flex;
justify-content: space-around;
}
.visor {
width: 700px;
height: 60px;
border-radius: 10px;
border: solid 1px #C6C6C6;
}
.visorVl {
width: 80px;
height: 60px;
border-radius: 10px;
background-color: #ffffff;
border: solid 1px #C6C6C6;
text-align: end;
}
.opcoes {
display: flex;
justify-content: space-around;
padding: 20px;
}
.btn {
height: 60px;
width: 150px;
background-color: #C4C4C4;
border-radius: 20px;
border: solid 2px #DADADA;
color: #ffffff;
transition: 0.2s;
}
.btn:hover {
background-color: #9c9c9c;
}
.font {
font-size: 16px;
}