-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (90 loc) · 1.71 KB
/
style.css
File metadata and controls
101 lines (90 loc) · 1.71 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background: linear-gradient(
45deg,
rgb(41, 131, 130),
rgb(34, 15, 89),
rgb(217, 139, 253)
);
display: flex;
justify-content: center;
align-items: center;
}
.container {
height: auto;
width: 350px;
position: relative;
z-index: 20;
background-color: rgba(0, 0, 0, 0.1);
border-radius: 25px;
box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(20px);
border: 1px solid rgba(145, 230, 239, 0.1);
padding: 1.5rem;
box-shadow: 0 0 50px rgb(3, 177, 189);
}
.title {
text-align: center;
color: rgb(255, 255, 255);
font-weight: bold;
font-size: 25px;
}
.result {
background-color: rgb(31, 31, 31);
text-align: right;
padding: 0.5rem 1rem 0.5rem 0.5rem;
border-radius: 0.5rem;
margin: 1rem 1rem 0 1rem;
border: 1px solid rgba(0, 0, 0, 1);
color: white;
}
.input {
margin: 1.5rem;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.input label {
color: #ffffff;
margin: 0 0.5rem 0.2rem 0.5rem;
font-size: 18px;
}
.input .user-input {
margin: 0 0.5rem 0.2rem 2rem;
width: 75%;
height: 2rem;
border-radius: 0.5rem;
outline: none;
border: nones;
border: 1px solid rgba(0, 0, 0, 0.25);
padding: 0.5rem;
background-color: rgb(108, 161, 240);
}
.btn {
display: flex;
justify-content: center;
}
.btn .reg-btn {
width: 80%;
height: 30px;
border-radius: 0.5rem;
border: none;
background-color: rgb(154, 3, 28);
color: black;
font-size: 20px;
font-weight: bold;
cursor: pointer;
border: 2px solid rgba(0, 0, 0, 0.5);
}
.reg-btn:hover {
background-color: rgb(211, 23, 77);
}
.error {
color: red;
margin: 0.2rem auto;
}