-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (59 loc) · 1.09 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Ubuntu Mono', monospace;
}
body {
margin: 0;
font-family: monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
min-height: 100vh;
display: flex;
flex-direction: column;
color: #fff;
background-color: #000;
}
input[type="checkbox"] {
border: 1px solid #fff;
accent-color: #fff;
color: #000;
}
.home-page{
display: flex;
width: 100vw;
height: 100vh;
}
.btn{
border: none;
padding: 10px;
background-color: #fff;
color: #000;
display: block;
width: 200px;
margin: 25px 0px 25px 0px;
transition: 0.3s;
cursor: pointer;
border: solid 1px #fff;
}
.btn:hover{
background-color: #000;
color: #fff;
border: solid 1px #fff;
}
.password-result{
padding: 10px 10px 10px 20px;
border-left: solid 2px #fff;
display: block;
cursor: copy;
transition: 0.2s;
position:relative;
}
.password-result:hover{
background-color: #121212;
}
.password-result:active{
background-color: #fff;
color: #000;
}