-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (126 loc) · 2.16 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
}
body {
font-family: 'Inter';
font-weight: 400;
width: 100vw;
height: 100vh;
background: #E5E5E5;
display: flex;
justify-content: space-between;
align-items: center;
padding: 36px;
}
main {
width: 100%;
height: 100%;
}
main > img {
margin-left: 3rem;
}
main form {
margin: 2rem auto;
width: 100%;
height: 90%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
#text {
height: 100%;
color: #0A3871;
font-size: 2rem;
background: none;
}
#text::-webkit-input-placeholder {
color: #0A3871;
font-size: 2rem;
}
textarea:focus {
outline: 0;
}
main footer {
margin: 40px;
}
main footer p {
display: flex;
gap: .5rem;
margin: 16px 0;
font-size: .75rem;
opacity: 0.8;
}
.btn {
width: 328px;
height: 67px;
border-radius: 24px;
font-size: 1rem;
text-align: center;
transition: 10ms;
background: #D8DFE8;
color: #0A3871;
border: 1px solid #0A3871;
}
.btn:hover {
cursor: pointer;
transform: scale(1.01);
}
#encrypt {
background: #0A3871;
color: white;
margin-right: 24px;
}
.res {
width: 30%;
height: 100%;
background: white;
border-radius: 32px;
box-shadow: 0px 24px 32px -8px #00000014;
display: flex;
}
.searching {
align-self: center;
text-align: center;
color: #343A40;
}
.searching img {
max-width: 90%;
margin: auto;
}
.searching h3 {
font-size: 1.5rem;
font-weight: 700;
margin: 32px 0 16px 0;
}
.searching p {
font-size: 1rem;
}
.found {
align-self: center;
width: 100%;
height: 100%;
font-size: 1.5rem;
color: #495057;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.found > textarea {
width: 80%;
max-width: 80%;
height: 65%;
max-height: 65%;
margin: 40px 40px 0 40px;
font-size: 1.5rem;
color: #495057;
}
#copy {
max-width: 80%;
margin: 40px;
}