-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (51 loc) · 844 Bytes
/
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
/* Programa para Leitura de Notas */
html, body{
width: 100%;
max-width: 100vw;
height: 100%;
padding: 0;
margin: 0;
}
body{
background-color: rgb(87, 100, 216);
}
.general{
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
form {
text-align: center;
background-color: white;
width: 400px;
height: 200px;
padding: 10px;
border-radius: 20px;
}
input, textarea{
width: 40%;
margin: 5px;
}
.form-textarea {
display: block;
max-width: 300px;
}
button{
border-radius: 10px;
padding: 5px;
margin: 5px;
}
@media(max-width: 800px){
.form-group{
min-width: 100%;
}
.general{
display: flex;
flex-direction: column;
width: 100%;
}
form{
height: 450px;
}
}