-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (88 loc) · 1.44 KB
/
style.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
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-family: 'IBM Plex Mono', monospace;
font-size: 62.5%;
}
h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 20px;
}
h2 {
font-size: 2.5rem;
font-weight: 700;
text-align: center;
margin-bottom: 10px;
}
hr {
margin: 20px 0;
height: 2px;
background-color: black;
border: none;
}
input {
width: 100%;
margin: 10px 0;
padding: 8px;
border: 1px solid black;
border-radius: 10px;
}
input:focus {
border: 1px solid #c4c4c4;
outline: none;
}
label {
display: flex;
flex-direction: column;
align-items: center;
font-size: 2rem;
}
label > span {
font-size: 1.5rem;
}
button {
width: 100%;
padding: 8px 0;
background: #c4c4c4;
border: 1px solid black;
border-radius: 10px;
font-size: 1.5rem;
}
button:hover {
cursor: pointer;
}
button:focus {
border: 1px solid black;
outline: none;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
align-items: center;
}
main {
border: 1px solid black;
width: 60%;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.encrypt_container,
.decrypt_container {
display: flex;
flex-direction: column;
}
.encrypt_form,
.decrypt_form {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}