-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 940 Bytes
/
style.css
File metadata and controls
56 lines (50 loc) · 940 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: #f4f4f4;
color:#333;
display:grid;
justify-content: space-evenly;
}
img {
width: 100px;
height: 100px;
}
.text-content {
padding-top: 50px;
padding-bottom: 20px;
}
button {
display: inline-block;
outline: none;
cursor: pointer;
font-size: 14px;
padding: 0 12px;
line-height: 20px;
height: 30px;
max-height: 30px;
background: #566AE5;
font-weight: 700;
border: 0;
border-radius: 0;
color: #FFFFFF;
transition-timing-function: ease-in-out;
transition-property: box-shadow;
transition-duration: 150ms;
margin-top: 10px;
:hover {
box-shadow: 0 2px 2px rgb(39 44 52 / 12%);
}
}
button:active {
background-color: black;
}
#generated-password {
border: solid 2px black;
background-color: #fff;
border-radius: 5px;
height: 30%;
width: 100%;
font-weight: bold;
font-size: 4vh;
}