-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (65 loc) · 1.01 KB
/
style.css
File metadata and controls
76 lines (65 loc) · 1.01 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
html, body {
height: 100%;
width: 100%;
}
h1 {
font-family: 'Lucida Console';
font-weight: bold;
font-size: 4em;
}
h1, h3 {
text-align: center;
}
h3 {
font-family: 'Monaco';
font-weight: normal;
font-size: 1.5em;
}
a {
color: red;
}
a:link {
color: red;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: underline;
}
hr {
margin: 5% 0 7% 0;
}
textarea {
margin: auto;
display: block;
width: 95%;
height: 40%;
resize: none;
font-size: 2em;
border: 5px solid red;
border-radius: 20px;
box-sizing: border-box;
padding: 15px;
}
#generateButton {
margin: auto;
margin-top: 1%;
display: block;
font-family: 'Poppins', sans-serif;
border-radius: 6px;
border: 1.5px solid black;
background-color: #2f7ff7;
font-size: 18px;
padding: 6px 12px;
transition-duration: 0.4s;
}
#generateButton:hover {
background-color: #185ec7;
cursor: pointer;
}
#password {
text-align: center;
padding: 0.5% 0;
font-family: 'Copperplate';
font-size: 1.5em;
}