-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (112 loc) · 2.11 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1{
color: #dadada;
}
body{
background-color: #3a3a47;
display: flex;
flex-direction: column;
font-family: arial;
font-weight: bold;
min-height: 100vh;
min-width: 100vh;
}
#button-area{
display: flex;
justify-content: space-around;
}
#button-prev, #button-next{
width: 40%;
height: 22px;
visibility: hidden;
background-color: rgb(70, 121, 168);
border:none;
color: white;
cursor: pointer;
border-radius: 6px;
}
#search-button{
width: 60px;
height: 24px;
pointer-events: none;
background-color: rgb(223, 223, 223);
border: none;
border-radius: 6px;
cursor: pointer;
}
#clear-button{
width: 60px;
height: 24px;
background-color: rgb(146, 242, 255);
border: none;
border-radius: 6px;
cursor: pointer;
color: rgb(58, 58, 58);
}
#content{
width: max-content;
height: max-content;
text-align: center;
display: flex;
flex-direction: column;
gap: 15px;
margin: auto;
}
footer{
text-align: center;
width: 100%;
color: white;
}
footer a{
text-decoration: underline;
color: white;
}
footer p{
margin: 3px;
}
input{
width: 230px;
height: 24px;
}
#response{
color: #f0f0f5;
visibility: hidden;
}
#result-content{
width: 400px;
min-height: 200px;
/* background-color: #696979; */
display: flex;
align-items: flex-start;
justify-content: center;
}
#resultTable{
border-collapse: collapse;
border: 1px solid #696979;
}
#resultTable tr {
padding: 10px;
}
#resultTable td {
padding: 3px;
color: #ececec;
}
/* Altera a cor de fundo das células ímpares */
tr:nth-child(odd) {
background-color: #474747; /* Cor de fundo para as células ímpares */
}
/* Altera a cor de fundo das células pares */
tr:nth-child(even) {
background-color: #868686; /* Cor de fundo para as células pares */
}
#resultTable th{
background-color: rgb(48, 41, 41);
color: white;
text-align: center;
padding: 4px;
/* border: 1px solid black; */
}