-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasswordGenerator.css
More file actions
108 lines (91 loc) · 1.5 KB
/
PasswordGenerator.css
File metadata and controls
108 lines (91 loc) · 1.5 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
html,
body {
margin: 0;
padding: 0;
font-weight: 600;
background-image: url(Image/codex.gif);
height: 100%;
font-size: 24px;
}
.message-container {
display: flex;
justify-content: center;
margin-top: 10px;
}
#message {
color: green;
font-weight: bold;
background-color: black;
padding: 5px;
font-size: 20px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
flex-direction: column;
}
header {
background-color: black;
font-size: 64px;
color: green;
display: flex;
justify-content: center;
padding: 2px;
}
.flexing {
display: flex;
justify-content: space-between;
margin: 5px;
}
.child {
background-color: green;
padding: 5px;
margin: 5px;
display: flex;
flex-direction: column;
justify-content: center;
width: 400px;
}
button {
background-color: black;
color: green;
display: flex;
justify-content: center;
align-items: center;
padding: 5px;
font-weight: 600;
}
.output {
width: 200px
}
input {
background-color: black;
color: green;
text-align: center;
padding: 2px;
}
@media (max-width:576px) {
html,
body {
font-size: 16px;
}
header {
font-size: 32px;
}
.child {
width: 300px;
}
}
@media (min-width:768px) {
header {
font-size: 64px;
}
.container {
height: 85%;
}
.output {
width: 320px;
}
}