-
Notifications
You must be signed in to change notification settings - Fork 900
/
Copy pathstyle.css
45 lines (36 loc) · 765 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');
* {
margin: 0px;
padding: 0px;
font-family: 'Poppins', sans-serif;
}
#container {
border-radius: 20px;
padding: 50px;
margin: 50px auto;
transition: all 0.5s;
}
#container:hover {
border: 2px solid rgba(255, 255, 255, 0.35);
box-shadow: 0px 0px 60px -6px rgba(255, 255, 255, 0.35);
-webkit-box-shadow: 0px 0px 60px -6px rgba(255, 255, 255, 0.35);
-moz-box-shadow: 0px 0px 60px -6px rgba(255, 255, 255, 0.35);
}
#enter-message{
color: #ffff;
}
#enter-key{
color: #ffff;
}
#result-encrypt{
color: #ffff;
}
#encrypted-message{
color: #ffff;
}
#value-key{
color: #ffff;
}
#result-decrypt{
color: #ffff;
}