-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (59 loc) · 1.13 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
.box {
width: 800px !important;
top: 50%;
position: relative;
transform: translateY(-50%);
}
.operations {
background-color: #deefef !important;
}
.line div {
background-color: #F5F5F5;
color: black;
padding: 16px 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border: 0.1px solid #D3D3D3;
transition: all 0.1s;
cursor: pointer;
outline: none;
}
.line div:hover {
background-color: #C0C0C0;
}
.ac {
background-color: #90EE90 !important;
}
.igual {
color: #D2122E !important;
}
input {
width: 75%;
height: 60px;
border: 0.5px solid #D3D3D3;
background-color: #fff;
padding-left: 10px;
}
button {
border: 0.1px solid #D3D3D3;
}
@media (max-width: 480px) {
.box {
display: flex !important;
width: 100% !important;
}
input {
width: 100%;
height: 75%;
border: 0.5px solid #D3D3D3;
background-color: #fff;
padding-left: 10px;
}
.line div {
background-color: #F5F5F5;
color: black;
padding: 16px 8px;
}
}