-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (91 loc) · 1.85 KB
/
Copy pathstyles.css
File metadata and controls
105 lines (91 loc) · 1.85 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
* {
padding: 0%;
margin: 0%;
box-sizing: border-box;
}
body{
background-color: purple;
}
.container{
max-width: 50%;
height: auto;
/* background-color: rgb(255, 255, 255); */
margin: 30px auto;
padding: 23px;
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#passwordForm {
width: 80%;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
background-color: rgb(129, 51, 255);
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
label {
display: flex;
width: 100%;
font-size: 16px;
font-family: 'Lato', sans-serif;
color: #efefef;
}
input {
width: 100%;
margin-bottom: 10px;
padding: 10px;
font-size: 16px;
font-family: 'Lato', sans-serif;
border-radius: 5px;
border: 1px solid #ccc;
color: #555;
}
button {
padding: 10px 20px;
font-size: 16px;
font-family: 'Lato', sans-serif;
border-radius: 5px;
border: none;
background-color: #333;
color: #fff;
cursor: pointer;
}
button:hover {
background-color: #555;
}
input:focus{
outline: none;
}
.heading{
color: #fff;
font-size: x-large;
font-family: 'Lato';
}
#passwordList{
width: 80%;
height: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
background-color: rgb(255, 252, 51);
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
margin-top: 10px;
color: purple;
}
.password {
width: auto;
height: auto;
padding: 10px;
margin: 2px;
font-family: 'Lato';
}