-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (112 loc) · 2.02 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (112 loc) · 2.02 KB
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
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,600;0,700;0,800;1,400;1,500;1,600&family=Playfair+Display:ital,wght@1,400;1,500;1,600&display=swap');
html {
font-size: 62,5%; /// equivalente a 10px;
font-family: 'EB Garamond', 'Times new Roman', Times, serif;
margin: 0;
padding: 0;
border: 0;
}
body {
background-color: #f2f2f0;
}
main {
display: flex;
justify-content: space-evenly;
flex-direction: row;
width: 80vw;
margin: auto;
}
.titulo {
text-align: center;
}
.form {
width: 40vw;
}
.msg {
width: 40vw;
}
.btn {
background-color: #000;
border-color: #FFF;
border-radius: 5px;
border-width: 1px;
transform: scale(1.2);
color: #ffffff;
font-family: 'EB Garamond', 'Times new Roman', Times, serif;
font-weight: bold;
font-size: 1.1rem;
margin: 0.5rem 1rem 0 0.4rem;
padding: 0.2rem 0.6rem;
}
textarea {
width: 38vw;
height: 5rem;
border-radius: 4px;
margin-top: 0.5rem;
}
footer {
width: 100%;
height: 6vw;
background-color: rgba(203, 204, 165, 0.8);
border-radius: 2px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
label {
font-size: 1.1rem;
}
ul {
list-style: none;
padding: 0.2rem 2rem 0.2rem 0;
text-align: right;
font-weight: 500;
font-family: 'EB Garamond', 'Times new Roman', Times, serif;
color: #c1c400;
}
@media screen and (max-width: 989px){
main {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.form {
width: 80vw;
}
.msg {
width: 80vw;
margin-top: 2rem;
}
label {
font-size: 1.1rem;
}
textarea {
width: 80vw;
}
footer {
height: 10vw
}
ul {
margin-top: 0.4rem;
padding-right: 1rem;
}
li {
font-weight: 400;
font-size: 0.8rem;
}
}
@media screen and (max-width: 600px) {
footer {
height: 20vw
}
}
@media screen and (max-height:527px) {
footer {
display: none
}
}