-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
156 lines (135 loc) · 3.28 KB
/
style.css
File metadata and controls
156 lines (135 loc) · 3.28 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Open Sans Display', sans-serif;
}
.regis_wrapper {
background: #40E0D0; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
background-repeat: no-repeat;
background-size: cover;
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.regis_form {
font-family: 'Open Sans', sans-serif;
font-weight: 550;
background: white;
padding: 40px 45px;
border-radius: 20px;
font-size: 17px;
letter-spacing: 5px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
max-width: 500px;
overflow: hidden;
width: 50%;
user-select: none;
transition: background-color 0.6s;
}
.regis_form:hover {
background-color: #676c72;
}
.copyright {
text-align: center;
margin-top: -56px;
font-size: 18px;
color: black;
opacity: 13.7;
}
.logo img {
display: block; /* Make the image a block element */
margin: 0 auto; /* Center the image horizontally */
width: 30%;
height: 20%;/* Adjust the width to decrease the size of the image */
/* Any other image styling properties you want to apply */
}
.heading {
text-align: center;
font-weight: bold;
font-size: 21px;
letter-spacing: 2px;
margin-bottom: 35px;
user-select: none;
}
.regis_form label {
font-size: 17px;
letter-spacing: 1px;
display: block;
margin-bottom: 5px;
user-select: none;
}
.regis_form input {
width: 100%;
font-size: 15px;
height: 35px;
border: none;
background: #ddd;
padding: 10px;
border-radius: 5px;
margin-top: 3px;
margin-bottom: 8px;
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
cursor: text;
user-select: text;
transition: color 0.3s;
}
.regis_form:hover{
color: #dbdbdb;
}
.subButton button {
padding: 15px 15px;
background: lightskyblue;
border-radius: 8px;
font-weight: 200px;
border: .5px #2a8bb5;
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
font-size: 15px;
cursor: pointer;
width: 100%;
transition: all 0.3s;
}
.subButton button:hover {
background: #c2e59c;
background: -webkit-linear-gradient(to right, #64b3f4, #c2e59c);
background: linear-gradient(to right, #64b3f4, #c2e59c);
color: white;
}
.subButton {
text-align: center;
}
@media screen and (max-width: 600px) {
.regis_wrapper {
align-items: flex-start;
align-items: center;
min-height: 100vh;
}
.regis_form {
width: 85%;
font-size: 14px;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
.heading {
font-size: 24px;
margin-bottom: 20px;
}
.regis_form label {
font-size: 14px;
}
.regis_form input {
height: 25px;
padding: 8px;
}
.subButton button {
padding: 8px 12px;
font-size: 13px;
}
}