-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (84 loc) · 1.69 KB
/
style.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
width: 100vw;
background-color: #fff;
}
.container{
color: #000;
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 50%;
background-color: rgb(245,242,242);
padding: 2px 0;
border-radius: 5px;
-webkit-box-shadow: 3px 3px 3px 3px rgba(50, 50, 50, 0.77);
-moz-box-shadow: 3px 3px 3px 3px rgba(50, 50, 50, 0.77);
box-shadow: 3px 3px 3px 3px rgba(50, 50, 50, 0.77);
}
.container table{
width: 100%;
max-width: 800px;
border-collapse: collapse;
}
.container table tr th{
height: 56px;
font-size: 16px;
font-weight: 700;
letter-spacing: .25px;
text-align: left;
padding: 0 10px;
}
.container table tr.item td{
border-bottom: 1px solid #c8cacc;
padding: 0 10px;
}
.container table tr.item{
height: 60px;
}
.container table tr td.icone{
width: 5%;
}
.container table tr td {
vertical-align: middle;
width: 20%;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.25px;
}
.container table tr td .button{
font-size: 14px;
max-width: 90px;
margin-left: auto;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: #000000;
border: 2px solid #1a1b1b;
border-radius: 5px;
background-color: transparent;
padding: 8px 10px;
min-height: 20px;
}
.container table tr td .button:hover{
background-color: #dbdef6;
}
.negativo{
color: #ed0818;
}
.positivo{
color: #00a971;
}
.right{
text-align: right;
}