-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
81 lines (61 loc) · 1.1 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
body {
margin: 0;
padding: 50px;
color: #FFFFFF;
background: #1F2937;
font-family: 'Inter', sans-serif;
}
h1{
font-family: 'Karla', sans-serif;
margin-bottom: 0px;
font-size: 40px;
}
h1>span{
display: block;
color: #4ADF86;
}
main>p{
font-size: 20px;
margin: 10px 0 40px 0;
}
section{
margin: 35px 0px;
}
button{
font-family: 'Inter', sans-serif;
font-weight: 500;
padding: 8px 16px;
background: #10B981;
color: white;
border: none;
border-radius: 6px;
}
#user-input{
display: flex;
height: 150px;
flex-direction: column;
justify-content: space-around;
align-items: flex-start;
}
#length-inp{
width: 60px;
border: none;
padding: 4px 8px;
border-radius: 6px;
background: #10B981;
}
.passwords{
display: inline-block;
text-align: center;
background: #273549;
padding: 10px 50px;
width: 200px;
font-weight: 500;
border-radius: 6px;
color: #55F991;
letter-spacing: .8px;
margin-top: 0;
}
.passwords:first-of-type{
margin-right: 24px;
}