-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
163 lines (137 loc) · 2.34 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
body {
background-color: #20263d;
}
h1 {
font-family: Arial, Helvetica, 'sans-serif';
width: 100%;
color: white;
}
.welcome {
display: block;
width: 100%;
font-family: 'sans-serif';
color: #768696;
font-weight: 400;
}
input {
padding: 10px;
margin-bottom: 5px;
border: 1px solid rgb(170, 166, 166);
border-radius: 4px;
}
input:focus {
outline: none;
}
button {
background-color: slateblue;
display: block;
color: white;
/* margin: auto; */
margin-top: 20px;
padding: 10px 32px;
border: none;
border-radius: 10px;
transition: 0.4s;
grid-column: 1 / 3;
justify-self: center;
}
button:hover {
font-stretch: expanded;
color: white;
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
button:focus {
outline: none;
border-color: slateblue;
border-radius: 10px;
}
.no-spam {
display: block;
width: 100%;
font-family: 'sans-serif';
color: #768696;
text-align: center;
}
footer {
text-align: center;
margin-top: 30px;
position: fixed;
bottom: 0;
width: 100%;
color: #768696;
}
#submitted {
display: none;
color: #768696;
font-family: 'sans-serif';
font-weight: 400;
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
main {
width: 500px;
margin: auto;
}
h1 {
text-align: center;
}
.card {
/* background-color: #181c30; */
padding: 10px;
border-radius: 10px
}
.welcome, #submitted {
font-size: 30px;
line-height: 35px;
}
form {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
.middle {
grid-column: 1 / 3;
grid-row: 2;
}
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 700px) {
form {
display: flex;
flex-direction: column;
justify-content: center;
margin: auto;
}
h1 {
font-size: 50px;
}
.welcome, #submitted {
font-size: 20px;
line-height: 25px;
letter-spacing: larger;
}
}
/* .separator {
display: flex;
gap: 4px;
}
.separator-box {
width: 20%;
height: 3px;
} */
/* for the seperator */
/* .pink {
background-color: #ff74c3;
}
.purple {
background-color: #7474ff;
}
.blue {
background-color: #74ffd0;
}
.yellow {
background-color: #fff474;
}
.red {
background-color: #ff7b74;
} */