-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle -2- Signup.css
109 lines (96 loc) · 1.92 KB
/
Style -2- Signup.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
* {
font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: url(1-Background.png)no-repeat;
background-size: cover;
background-position: center;
;
width: 100%;
height: 100vh;
display: flex;
place-items: center;
place-content: center;
font-size: 1.05rem;
}
section {
background-color: transparent;
color: white;
height: 100vh;
background-repeat: no-repeat;
display: flex;
place-items: center;
place-content: center;
border: 1.5px solid rgba(200, 200, 200, 0.3);
backdrop-filter: blur(7px);
box-shadow: 0 0 50px rgba(212, 212, 212, 0.4);
}
header {
margin: 15px;
padding-inline: 25px;
height: 75vh;
display: block;
justify-content: center;
place-content: center;
position: relative;
text-shadow: 2px 2px 5px rgb(0, 0, 0);
text-align: center;
}
h2 {
font-size: 3rem;
color: white;
opacity: 0.8;
}
h2::before {
content: "";
position: absolute;
background-color: white;
opacity: 0.8;
height: 3px;
width: 0%;
bottom: 25%;
transition: 0.5s;
}
h2:hover::before {
width: 68%;
}
div {
padding-right: 40px;
width: 20vw;
display: block;
justify-content: center;
place-content: center;
}
div {
display: flex;
flex-direction: column;
}
input,
select {
height: 30px;
margin-top: 2.5px;
padding-inline: 10px;
border: 0px;
}
.Signup-Submit-btn {
width: 100%;
margin-top: 10px;
background-color: rgba(88, 216, 131, 0.911);
font-weight: 600;
font-size: 0.8rem;
text-shadow: 2px 2px 5px rgb(0, 0, 0);
color: white;
height: 35px;
border: 0px;
}
.Signup-Submit-btn:hover {
box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.541);
}
label {
color: rgb(255, 255, 255);
margin-block: 2px;
text-shadow: 0px 0px 5px rgb(0, 0, 0)
}