-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
54 lines (47 loc) · 859 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #F7F9FA;
}
h1, h2 {
text-align: center;
margin-top: 50px;
}
#buttons {
display: flex;
justify-content: center;
margin-top: 30px;
}
button {
padding: 10px 20px;
font-size: 16px;
margin: 10px;
background-color: #3B86FF;
color: #FFFFFF;
border-radius: 5px;
border: none;
cursor: pointer;
}
button.active {
background-color: #2A69CC;
}
#output {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}
textarea {
width: 400px;
height: 120px;
margin-bottom: 10px;
border-radius: 5px;
border: solid 1px #B9BEC5;
padding: 10px;
}
input[type="password"] {
width: 400px;
margin-bottom: 10px;
border-radius: 5px;
border: solid 1px #B9BEC5;
padding: 10px;
}