-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
69 lines (62 loc) · 1.25 KB
/
index.css
File metadata and controls
69 lines (62 loc) · 1.25 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
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 32px;
}
#btnGenerate {
margin: 16px 0;
height: 36px;
outline: none;
padding: 0 16px;
background: #2c3e50;
color: white;
line-height: 36px;
text-transform: uppercase;
border: none;
text-decoration: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
letter-spacing: 1px;
transition: background-color 280ms;
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0,0,0,.12);
}
#btnGenerate:hover {
background: #435c7c;
}
#inputLength, #inputCount {
height: 24px;
outline: none;
width: 50px;
border-radius: 4px;
box-sizing: border-box;
border: 1px solid #c7cbce;
}
.description {
display: flex;
background: #f3f3f3;
font-size: 16px;
justify-content: center;
margin-bottom: 24px;
color: #353535;
font-style: italic;
}
.setup {
display: flex;
flex-direction: column;
align-items: center;
}
.setupField {
width: 110px;
text-align: left;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.password {
margin-top: 4px;
}