-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
159 lines (146 loc) · 3.02 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*formatação dos paginas*/
*{
margin: 0;
padding: 0;
text-decoration: none;
font-family: 'Roboto', sans-serif;
}
/*ESTILO DA PAGINA INDEX*/
.secao-form{
height: 100vh;
background-position: center;
background-size: cover;
}
.secao-form .container-form{
max-width: 970px;
margin: 0;
padding: 30px 50px;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
background: #f1f1f1;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.container-form h1{
text-align: center;
color: #222222;
}
.container-form .tittlep{
text-align: center;
color: #222222;
padding: 0 0 50px 0;
}
.content-form .camp{
width: 22em;
height: 2em;
border-radius: 6px;
border: none;
box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 2px;
outline: #f1f1f1;
}
.content-form .camp +.camp{
margin: auto 10px;
}
.content-form select{
width: 45em;
height: 2em;
margin: 15px 0 40px 0;
border-radius: 6px;
border: none;
box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 2px;
outline: #f1f1f1;
}
.content-form .btn{
padding: 10px 8em;
border: none;
border: 6px;
border-radius: 6px;
background-color: rgba(3, 102, 214, 0.3);
font-weight: bold;
cursor: pointer;
}
.content-form .link-list{
padding: 8px 6.3em;
border-radius: 6px;
font-weight: bold;
color: #222222;
}
@media(max-width: 730px){
.secao-form .container-form{
max-width: 270px;
}
.container-form h1{
text-align: center;
max-width: 340px;
}
.container-form .tittlep{
max-width: 300px;
}
.content-form .camp +.camp{
margin:10px auto;
}
.content-form select{
width: 22em;
}
.content-form .btn{
margin: 0 20px 50px 20px;
text-align: center;
}
.content-form .link-list{
padding: 0;
margin: auto 60px;
text-align: center;
border-radius: 6px;
font-weight: bold;
color: #222222;
}
}
/*ESTILO DA PAGINA LISTA*/
.secao-table{
height: 100vh;
background-position: center;
background-size: cover;
}
.secao-table .container-table{
max-width: 970px;
min-width: 720px;
margin: 0;
padding: 30px 50px;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
background: #f1f1f1;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.secao-table .container-table .content-table{
display: grid;
grid-column: 1fr,1fr,1fr;
}
.secao-table .container-table .content-table tr th{
height: 30px;
border-radius: 6px 0 0 6px ;
text-align: left;
background: rgba(3, 102, 214, 0.3);
}
.secao-table .container-table .content-table tr:nth-child(2n){
background: #E3E6FE;
}
.link-voltar{
margin-top: 30px;
color: #222222;
}
@media(max-width: 730px){
.secao-table .container-table{
min-width: 270px;
}
.secao-table .container-table .content-table{
width: 370px;
overflow-x: auto;
}
}