-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (83 loc) · 1.1 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
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
font-size: 20px;
font-weight: 400;
}
body {
background: #ffe787ba;
width: 100%;
}
header {
background-color: #53A2BE;
color: azure;
border-bottom: 2px solid black;
}
h1 {
padding: 20px;
font-size: 2.5em;
text-align: center;
font-weight: 400;
}
p {
font-size: 12px;
margin: 5px;
}
textarea:focus {
outline: none;
}
textarea {
padding: 20px;
margin: 20px;
border: none;
border-radius: 20px;
resize: none;
}
button {
font-size: 1.2em;
background-color: #53A2BE;
color: azure;
padding: 5px;
margin: 10px;
border: none;
border-radius: 5px;
}
button:hover {
background-color: #4689a1;
}
footer {
margin: 0;
height: 100%;
text-align: center;
background: #E6C972;
}
p.aviso {
font-size: 0.7em;
margin-bottom: 20px;
}
footer {
width: 100%;
height: 50px;
position: absolute;
bottom: 0;
padding: 5px;
background-color: #53A2BE;
color: azure;
}
footer p {
font-size: 1em;
}
@media(max-width: 576px) {
header {
display: block;
width: 100%;
}
h1 {
font-size: 2em;
}
.col {
display: block;
width: 100%;
}
}