|
1 | | -@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap'); |
| 1 | +@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap"); |
2 | 2 | * { |
3 | | - box-sizing: border-box; |
4 | | - margin: 0; |
5 | | - padding: 0; |
| 3 | + box-sizing: border-box; |
| 4 | + margin: 0; |
| 5 | + padding: 0; |
6 | 6 | } |
7 | 7 |
|
8 | 8 | html { |
9 | | - font-size: 62.5%; |
10 | | - background-color: #eaeaea; |
| 9 | + font-size: 62.5%; |
| 10 | + background-color: #eaeaea; |
11 | 11 | } |
12 | 12 |
|
13 | 13 | body { |
14 | | - font-family: 'Poppins', sans-serif; |
15 | | - font-size: 1.4rem; |
16 | | - height: 100vh; |
17 | | - overflow: hidden; |
| 14 | + font-family: "Poppins", sans-serif; |
| 15 | + font-size: 1.4rem; |
| 16 | + height: 100vh; |
| 17 | + overflow: hidden; |
18 | 18 | } |
19 | 19 |
|
20 | 20 | .dark-mode { |
21 | | - background-color: rgb(70, 70, 70); |
| 21 | + background-color: rgb(70, 70, 70); |
22 | 22 | } |
23 | 23 |
|
24 | 24 | header { |
25 | | - width: 100%; |
| 25 | + width: 100%; |
26 | 26 | } |
27 | 27 |
|
28 | 28 | header img { |
29 | | - width: 40; |
30 | | - height: 40px; |
31 | | - border-radius: 50%; |
32 | | - max-width: 100%; |
33 | | - margin: 0 10px; |
34 | | - position: relative; |
35 | | - box-shadow: 0px 0px 5px 4px black; |
36 | | - background-color: gray; |
37 | | - transition: all 1s; |
38 | | - display: block; |
39 | | - float: left; |
| 29 | + width: 40; |
| 30 | + height: 40px; |
| 31 | + border-radius: 50%; |
| 32 | + max-width: 100%; |
| 33 | + margin: 0 10px; |
| 34 | + position: relative; |
| 35 | + box-shadow: 0px 0px 5px 4px black; |
| 36 | + background-color: gray; |
| 37 | + transition: all 1s; |
| 38 | + display: block; |
| 39 | + float: left; |
40 | 40 | } |
41 | 41 |
|
42 | 42 | header img:hover { |
43 | | - filter: brightness(150%); |
44 | | - box-shadow: none; |
45 | | - transform: translateY(5px); |
46 | | - background-color: yellow; |
| 43 | + filter: brightness(150%); |
| 44 | + box-shadow: none; |
| 45 | + transform: translateY(5px); |
| 46 | + background-color: yellow; |
47 | 47 | } |
48 | 48 |
|
49 | 49 | header h3 { |
50 | | - text-align: center; |
51 | | - padding: 20px; |
52 | | - background-color: yellow; |
53 | | - width: 25%; |
54 | | - border-radius: 12px; |
55 | | - border: 1px solid wheat; |
56 | | - margin: 0 auto; |
57 | | - position: relative; |
58 | | - transition: all 1s; |
| 50 | + text-align: center; |
| 51 | + padding: 20px; |
| 52 | + background-color: yellow; |
| 53 | + width: 25%; |
| 54 | + border-radius: 12px; |
| 55 | + border: 1px solid wheat; |
| 56 | + margin: 0 auto; |
| 57 | + position: relative; |
| 58 | + transition: all 1s; |
59 | 59 | } |
60 | 60 |
|
61 | 61 | a { |
62 | | - text-decoration: none; |
63 | | - color: inherit; |
| 62 | + text-decoration: none; |
| 63 | + color: inherit; |
64 | 64 | } |
65 | 65 |
|
66 | 66 | header h3:hover { |
67 | | - filter: brightness(150%) opacity(80%); |
68 | | - background-color: green; |
69 | | - cursor: pointer; |
70 | | - transform: translateY(10px); |
| 67 | + filter: brightness(150%) opacity(80%); |
| 68 | + background-color: green; |
| 69 | + cursor: pointer; |
| 70 | + transform: translateY(10px); |
71 | 71 | } |
72 | 72 |
|
73 | 73 | iframe { |
74 | | - position: absolute; |
75 | | - height: 300px; |
76 | | - width: 500px; |
77 | | - background-color: gray; |
| 74 | + position: absolute; |
| 75 | + height: 300px; |
| 76 | + width: 500px; |
| 77 | + background-color: gray; |
78 | 78 | } |
79 | 79 |
|
80 | 80 | .form-container { |
81 | | - width: 300px; |
82 | | - background-color: #ffffff; |
83 | | - border-radius: 10px; |
84 | | - box-shadow: 1px 1px 5px 1px black; |
85 | | - margin: 0 auto; |
86 | | - margin-top: 35vh; |
87 | | - padding: 10px; |
88 | | - text-align: center; |
89 | | - display: block; |
| 81 | + width: 300px; |
| 82 | + background-color: #ffffff; |
| 83 | + border-radius: 10px; |
| 84 | + box-shadow: 1px 1px 5px 1px black; |
| 85 | + margin: 0 auto; |
| 86 | + margin-top: 35vh; |
| 87 | + padding: 10px; |
| 88 | + text-align: center; |
| 89 | + display: block; |
90 | 90 | } |
91 | 91 |
|
92 | 92 | .form-container h4 { |
93 | | - text-align: center; |
94 | | - color: green; |
| 93 | + text-align: center; |
| 94 | + color: green; |
95 | 95 | } |
96 | 96 |
|
97 | 97 | .notas { |
98 | | - background-color: #fcfcfc; |
99 | | - border-radius: 10px; |
| 98 | + background-color: #fcfcfc; |
| 99 | + border-radius: 10px; |
100 | 100 | } |
101 | 101 |
|
102 | 102 | .notas input { |
103 | | - padding: 1px; |
104 | | - margin: 5px; |
105 | | - width: 80px; |
| 103 | + padding: 1px; |
| 104 | + margin: 5px; |
| 105 | + width: 80px; |
106 | 106 | } |
107 | 107 |
|
108 | 108 | .button button { |
109 | | - padding: 2px; |
110 | | - margin: 10px auto; |
111 | | - display: block; |
112 | | - text-align: center; |
113 | | - border: 1px solid rgba(0, 0, 0, 0.4); |
114 | | - border-radius: 4px; |
115 | | - width: 50%; |
| 109 | + padding: 2px; |
| 110 | + margin: 10px auto; |
| 111 | + display: block; |
| 112 | + text-align: center; |
| 113 | + border: 1px solid rgba(0, 0, 0, 0.4); |
| 114 | + border-radius: 4px; |
| 115 | + width: 50%; |
116 | 116 | } |
117 | 117 |
|
118 | 118 | .button #button0 { |
119 | | - background-color: darkblue; |
120 | | - color: white; |
121 | | - margin-top: 2px; |
| 119 | + background-color: darkblue; |
| 120 | + color: white; |
| 121 | + margin-top: 2px; |
122 | 122 | } |
123 | 123 |
|
124 | 124 | .button button:hover { |
125 | | - border: 1px solid black; |
| 125 | + border: 1px solid black; |
126 | 126 | } |
127 | 127 |
|
128 | 128 | .resultado #resultado { |
129 | | - text-align: center; |
| 129 | + text-align: center; |
130 | 130 | } |
131 | 131 |
|
132 | 132 | .resultado input { |
133 | | - padding: 2px; |
134 | | - border-radius: 4px; |
135 | | - font-size: 1.6rem; |
136 | | - background-color: black; |
| 133 | + padding: 2px; |
| 134 | + border-radius: 4px; |
| 135 | + font-size: 1.6rem; |
| 136 | + background-color: black; |
137 | 137 | } |
138 | 138 |
|
139 | 139 | .situacao input { |
140 | | - width: 100%; |
141 | | - color: transparent; |
142 | | - border: 0; |
143 | | - border-radius: 10px; |
144 | | - text-align: center; |
145 | | - background-color: purple; |
| 140 | + width: 100%; |
| 141 | + color: transparent; |
| 142 | + border: 0; |
| 143 | + border-radius: 10px; |
| 144 | + text-align: center; |
| 145 | + background-color: purple; |
146 | 146 | } |
147 | 147 |
|
148 | 148 | .clean #button1 { |
149 | | - padding: 2px; |
150 | | - margin: 0px auto; |
151 | | - display: block; |
152 | | - text-align: center; |
153 | | - border: 1px solid rgba(0, 0, 0, 0.4); |
154 | | - border-radius: 4px; |
155 | | - width: 30%; |
156 | | - background-color: #ff0000; |
157 | | - color: white; |
158 | | - margin-bottom: 3px; |
| 149 | + padding: 2px; |
| 150 | + margin: 0px auto; |
| 151 | + display: block; |
| 152 | + text-align: center; |
| 153 | + border: 1px solid rgba(0, 0, 0, 0.4); |
| 154 | + border-radius: 4px; |
| 155 | + width: 30%; |
| 156 | + background-color: #ff0000; |
| 157 | + color: white; |
| 158 | + margin-bottom: 3px; |
159 | 159 | } |
160 | 160 |
|
161 | 161 | .clean #button1:hover { |
162 | | - border: 1px solid black; |
| 162 | + border: 1px solid black; |
163 | 163 | } |
164 | 164 |
|
165 | 165 | footer { |
166 | | - position: absolute; |
167 | | - bottom: 0; |
168 | | - width: 100%; |
169 | | - text-align: center; |
170 | | - background-color: rgba(0, 0, 0, 0.1); |
| 166 | + position: absolute; |
| 167 | + bottom: 0; |
| 168 | + width: 100%; |
| 169 | + text-align: center; |
| 170 | + background-color: rgba(0, 0, 0, 0.1); |
171 | 171 | } |
172 | 172 |
|
173 | 173 | footer a { |
174 | | - text-decoration: none; |
175 | | - color: orangered; |
| 174 | + text-decoration: none; |
| 175 | + color: orangered; |
176 | 176 | } |
177 | 177 |
|
178 | 178 | .form-container1 { |
179 | | - width: 300px; |
180 | | - background-color: #ffffff; |
181 | | - border-radius: 10px; |
182 | | - box-shadow: 1px 1px 5px 1px black; |
183 | | - margin: 5px auto; |
184 | | - padding: 10px; |
185 | | - text-align: center; |
186 | | - display: block; |
| 179 | + width: 300px; |
| 180 | + background-color: #ffffff; |
| 181 | + border-radius: 10px; |
| 182 | + box-shadow: 1px 1px 5px 1px black; |
| 183 | + margin: 5px auto; |
| 184 | + padding: 10px; |
| 185 | + text-align: center; |
| 186 | + display: block; |
187 | 187 | } |
188 | 188 |
|
189 | 189 | .mensagem { |
190 | | - width: 300px; |
191 | | - background-color: transparent; |
192 | | - border-radius: 10px; |
193 | | - box-shadow: 1px 1px 5px 1px black; |
194 | | - margin: 5px auto; |
195 | | - padding: 10px; |
196 | | - text-align: center; |
197 | | - display: block; |
| 190 | + width: 300px; |
| 191 | + background-color: transparent; |
| 192 | + border-radius: 10px; |
| 193 | + box-shadow: 1px 1px 5px 1px black; |
| 194 | + margin: 5px auto; |
| 195 | + padding: 10px; |
| 196 | + text-align: center; |
| 197 | + display: block; |
198 | 198 | } |
199 | 199 |
|
200 | 200 | .erro { |
201 | | - border-color: red; |
| 201 | + border-color: red; |
202 | 202 | } |
0 commit comments