-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
113 lines (109 loc) · 1.79 KB
/
styles.css
File metadata and controls
113 lines (109 loc) · 1.79 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
/* Setting */
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html
{
font-size: 62.5%;
font-family: 'DotGothic16', sans-serif;
}
body
{
font-size: 1.6rem;
background-color: #0b6f56;
}
/* Container */
.container
{
width: 90%;
margin: 0 auto;
text-align: center;
}
/* Header */
header
{
display: flex;
flex-direction: column;
margin-top: 8vh;
margin-bottom: 16vh;
color: #ffffff;
font-size: 2.5rem;
}
header p
{
font-size: 2rem;
font-weight: bolder;
}
/* Form Styles */
main
{
height: 400px;
border-radius: 50px;
background: #1a745e;
box-shadow: inset 5px 5px 10px #166350,
inset -5px -5px 10px #1e856c;
}
.form__container
{
width: 90%;
height: 228px;
margin: 0 auto;
padding: 20px;
display: grid;
grid-template-rows: 2fr 1fr;
gap: 5vh;
}
.form__container form
{
display: flex;
flex-direction: column;
}
.form__container label
{
margin-bottom: 8px;
font-size: 1.8rem;
font-weight: bolder;
color: #ffffff;
}
.form__container select
{
margin: 8px auto;
width: 45%;
border: none;
border-radius: 4px;
}
.form__container input
{
height: 36px;
margin-top: 12px;
border: none;
text-align: center;
border-radius: 50px;
background: linear-gradient(145deg, #9fc2e2, #bde6ff);
box-shadow: 5px 5px 10px #96b7d5,
-5px -5px 10px #ccf7ff;
}
.form__container .form-btn
{
margin-top: 5vh;
border-radius: 50px;
background: linear-gradient(145deg, #2cc0c0, #f0f0f0);
box-shadow: 20px 20px 60px #bebebe,
-20px -20px 60px #ffffff;
cursor: pointer;
}
input
{
display: none;
}
.show
{
display: block;
}
.respuesta
{
color: #ffffff;
}