-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
94 lines (78 loc) · 1.37 KB
/
index.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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
color: aliceblue;
font-family: Helvetica,Arial, sans-serif;
}
.header{
background: url(images/background.jpg);
background-size: cover;
min-height: 100vh;
width: 100%;
background-position: center;
}
h1{
margin: 0;
font-size: 40px;
}
.random_text{
color: #E29645;
}
.card{
padding: 70px 50px;
background-color: rgba(0, 24, 62);
position: absolute;
top: 50%;
left: 70%;
transform: translate(-50%, -50%);
box-shadow: 15px 15px white;
width: 27%;
}
.btn{
padding: 10px 20px;
color: rgba(0, 24, 62);
width: 100%;
border: none;
}
.generate{
margin-top: 50px;
background: #E29645;
cursor: pointer;
}
.generate:hover{
background: #f69e41;
}
.clear{
background: white;
margin-top: 7px;
margin-bottom: 22px;
cursor: pointer;
}
.clear:hover{
background: transparent;
outline: solid 2px white;
outline-offset: -2px;
color: white;
}
hr{
height:2px;
border-width:0;
background-color: #2F3E53;
}
.passwordshow{
width: 100%;
margin-top: 30px;
display: flex;
justify-content: space-between;
}
.password_btn{
background: #063378;
color: white;
border: none;
width: 48%;
height: 40px;
cursor: pointer;
border: 1px solid #0042ad;
cursor:auto;
}