-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
107 lines (107 loc) · 2.12 KB
/
signup.css
File metadata and controls
107 lines (107 loc) · 2.12 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
/*Google Fonts*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,500;1,200;1,400;1,500&family=Rubik+Dirt&display=swap");
:root {
--primary-font: "Poppins", sans-serif;
--header-font: "Josefin Sans", sans-serif;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: var(--primary-font);
}
body {
display: flex;
align-items: center;
justify-content: center;
background-image: url(./Resources/3726585.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}
.container {
display: flex;
align-items: center;
justify-content: center;
padding-top: 100px;
}
.card {
padding: 20px;
display: flex;
width: 450px;
height: 480px;
background-color: aqua;
justify-items: center;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(5px);
transition: 0.8s;
margin-bottom: 130px;
}
.card:hover {
box-shadow: 0px 0px 18px black;
}
.top-content {
padding: 10px;
padding-top: 30px;
align-items: center;
justify-items: center;
color: #202124;
}
.top-content h1 {
font-size: 21px;
}
.top-content p {
font-size: 13px;
}
.forms {
margin-top: 20px;
}
.input-field label {
font-size: 13px;
}
.input-field input {
padding: 10px;
width: 385px;
border-radius: 5px;
border: none;
margin-bottom: 20px;
transition: 0.5s;
}
.input-field input:hover {
box-shadow: 0px 0px 5px black;
}
.input-field input:focus {
outline: none !important;
border-color: #292176;
}
.button {
padding-top: 15px;
color: #202124;
}
.btn {
padding: 10px;
width: 385px;
border-radius: 5px;
border: none;
margin-bottom: 20px;
transition: 0.5s;
}
.btn:hover {
background-image: linear-gradient(to right, #5099fe, #a86cff);
background-image: -webkit-linear-gradient(to right, #5099fe, #a86cff);
color: #fffffe;
cursor: pointer;
}
.text {
color: #fffffe;
text-decoration: none;
}
a {
color: #202124;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #292176;
}