-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
104 lines (85 loc) · 1.5 KB
/
Style.css
File metadata and controls
104 lines (85 loc) · 1.5 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
body {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin: 0;
justify-content: center;
align-items: center;
background-color: rgb(44, 44, 44);
color: aliceblue;
}
.Main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 88vh;
}
#title {
font-size: large;
display: flex;
align-items: center;
justify-content: center;
}
a {
text-decoration: none;
color: inherit;
cursor: pointer;
padding-left: 10px;
}
a:hover {
text-decoration: underline;
}
#link {
float: right;
padding-right: 10px;
}
#title p {
text-align: center;
}
form {
padding: 70px;
background-color: rgb(20, 20, 20);
border-radius: 6px;
width: 300px;
}
input {
width: 100%;
padding: 10px;
box-sizing: border-box;
margin-bottom: 16px;
border: 1px solid #ccc;
border-radius: 3px;
}
.password-container {
display: flex;
align-items: center;
}
.fa-copy {
cursor: pointer;
margin-right: 10px;
}
#Gender {
display: flex;
}
#Gender label {
padding-right: 70px;
}
label {
display: block;
margin-bottom: 8px;
}
button {
border: 0;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
border-radius: 7px;
background-color: rgb(231, 192, 37);
cursor: pointer;
}
button:hover {
background-color: rgb(221, 186, 44);
}
#result {
margin-top: 16px;
font-weight: 400;
}