-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
105 lines (95 loc) · 1.71 KB
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
background: linear-gradient(to bottom, #5babfb,#8F89F0);
min-width: 1410px;
}
.form{
width: 45%;
background-color: transparent;
backdrop-filter: blur(15px);
margin: auto;
padding: 30px 59px;
font-family: sans-serif;
}
.sr p{
font-size: 16px;
margin-top: 25px;
margin-bottom: 2px;
font-weight: 500;
}
.sr input{
width: 100%;
background-color: transparent;
height: 50px;
border-radius: 4px;
padding: 2px 10px;
}
.sr-bt{
display: flex;
justify-content: center;
padding-top: 25px;
}
.sr-bt button{
width: 100%;
height: 55px;
border: 1px solid #E73D71;
border-radius: 5px;
color: white;
background-color: transparent;
font-size: 18px;
letter-spacing: 2px;
&:hover{
background-color: #E73D71;
color: white;
}
}
#userdata{
border: 1px dotted white;
width: 50%;
font-family: sans-serif;
border-radius: 10px;
padding-left: 2%;
padding: 5px;
color: white;
margin: 70px auto;
}
#userdata p{
margin-top: 20px;
margin-left: 5px;
}
.da{
margin-top: 30px;
font-size: 2.1rem;
text-align: center;
}
.more-buttons{
display: flex;
justify-content: space-between;
padding-top: 25px;
align-items: center;
}
.remove-first button,.remove-end button{
border: none;
color: white;
padding: 7px;
background-color: #E73D71;
border-radius: 5px;
}
.remove-any input{
outline: none;
width: 170px;
background-color: transparent;
height: 30px;
}
input{
border: 1px solid white;
outline: none;
color: white;
}
::placeholder{
color: white;
}