-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (91 loc) · 1.79 KB
/
style.css
File metadata and controls
108 lines (91 loc) · 1.79 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
108
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
max-width: 100vw;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(to right bottom, #ffa585, #45c5d8);
color: white;
}
.container{
border: 0.5px solid white;
border-radius: 10px;
padding: 28px 32px;
display: flex;
flex-direction: column;
background:transparent;
box-shadow: 8px 8px 4px #909090, 8px 8px 10px #575757;
}
h1{
font-size: 1.4rem;
margin-block: 10px;
}
.inputBox{
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 300px;
}
.inputBox span{
padding-left: 3px;
position: absolute;
right: 5px;
font-size: 25px;
cursor: pointer;
color: rgb(115, 111, 111);
}
.passBox{
background-color: white;
border: none;
outline: none;
padding: 10px;
width: 100%;
border-radius: 3px;
font-size: 17px;
margin-block: 10px;
font-weight: 600;
padding-right: 35px;
text-overflow: ellipsis;
}
.row{
display: flex;
margin-block: 10px;
align-items: center;
background-color: #2c9aab;
padding-block: 5px;
padding-inline: 7px;
border-radius: 5px;
}
.row p, .row label{
flex-basis: 100%;
font-size: 14px;
}
.row input[type="checkbox"]{
width: 20px;
height: 20px;
}
.genBtn{
margin: 0 auto;
margin-top: 1.5em;
width: 60%;
padding-inline: 3px;
padding-block: 8px;
border: 0px;
border-radius: 10px;
cursor: pointer;
font-size: 15px;
background-color: rgb(73, 73, 209);
color: white;
}
.genBtn:hover{
background-color: #071b8d;
transition: ease-out 0.5s;
color: white;
}