-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
150 lines (145 loc) · 2.51 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
height: 100vh;
background: linear-gradient(#190213 50%, #0d3449 50%);
}
.wrapper {
background-color: #f7f7f7;
padding: 5em 4em;
position: absolute;
width: 31.25em;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
border-radius: 0.6em;
box-shadow: 0 1.5em 3em rgba(3, 21, 55, 0.3);
}
#userInput {
width: 100%;
border: none;
border-bottom: 2px solid #000000;
padding: 0.5em 1em;
font-size: 1em;
outline: none;
}
.options {
margin-top: 1em;
display: flex;
align-items: center;
justify-content: space-between;
}
select {
appearance: none;
width: 8em;
padding: 0.45em 0.9em;
font-size: 1.25em;
letter-spacing: 0.5px;
cursor: pointer;
background-color: #377dff;
border: none;
color: #f0e5e5;
background-image: url("arrow.png");
background-repeat: no-repeat;
background-size: 1.1em;
background-position: 6em;
outline: none;
border-radius: 0.3em;
}
select::-ms-expand {
display: none;
}
select option {
background-color: #321313;
color: #cbc5bf;
letter-spacing: 0.06em;
font-weight: 400;
font-size: 1.12em;
}
.selected {
display: none;
}
.color-inp {
appearance: none;
background-color: transparent;
width: 3.1em;
height: 3.4em;
outline: none;
border: none;
}
.color-inp::-webkit-color-swatch {
border-radius: 0.3em;
border: 0.18em solid #191f3f;
}
.color-inp::-moz-color-swatch {
border-radius: 0.3em;
border: 0.18em solid #191f3f;
}
.box {
display: flex;
align-items: center;
justify-content: space-around;
}
.box button,
.box a {
font-size: 1em;
padding: 0.8em 2em;
border-radius: 0.5em;
margin-top: 2em;
}
.box button:disabled {
background-color: transparent;
color: #a3aab6;
border: 0.18em solid #a3aab6;
}
.box button {
background-color: transparent;
color: #377dff;
border: 0.18em solid #400e61;
}
.box a {
background-color: #377dff;
color: #ffffff;
text-decoration: none;
border: 0.18em solid #377dff;
}
.container {
display: flex;
justify-content: center;
margin-top: 1.8em;
}
.hide {
display: none;
}
.box button:hover {
animation: hoverButton 0.2s ease-in-out;
}
@keyframes hoverButton {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.box a:hover {
animation: hoverButton 0.2s ease-in-out;
}
@keyframes hoverButton {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}