-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
121 lines (116 loc) · 2.37 KB
/
main.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
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@500;700&display=swap");
html,
body {
margin: unset;
padding: unset;
background-color: #1f1f1f;
height: 100%;
width: 100%;
font-family: "Ubuntu", sans-serif;
color: white;
}
.content {
padding-left: 5vh;
padding-right: 5vh;
text-align: center;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
footer {
position: fixed;
bottom: 0;
width: 80%;
margin-left: 10%;
margin-right: 10%;
height: 5vh;
background-color: #1f1f1f;
display: flex;
justify-content: space-evenly;
align-items: center;
z-index: 1;
border-top: 5px solid #ff7d7d;
border-radius: 20px 20px 0px 0px;
}
.buttons-wrapper a {
all: unset;
cursor: pointer;
color: #7dffee;
text-decoration: none;
font-size: 1.5rem;
font-weight: 700;
padding: 0.5rem;
margin: 1rem;
border: 2px solid #ff7d7d;
border-radius: 10000px;
transition: 0.2s ease;
}
.buttons-wrapper a:hover {
background-color: #ff7d7d;
color: #1f1f1f;
}
a {
border-bottom: 0px solid #ff7d7d;
border-radius: 10000px;
all: unset;
cursor: pointer;
color: #7dffee;
transition: 0.2s ease;
}
a:hover {
border-bottom: 2px solid #ff7d7d;
}
nav {
width: 80%;
margin-left: 10%;
margin-right: 10%;
height: 5vh;
background-color: #1f1f1f;
display: flex;
justify-content: space-evenly;
align-items: center;
position: fixed;
z-index: 1;
border-bottom: 5px solid #ff7d7d;
border-radius: 0px 0px 20px 20px;
}
#inputEncode, #inputDecode {
min-width: 50px;
max-width: 80%;
background-color: #1f1f1f;
color: white;
font-size: 1.5rem;
font-weight: 700;
padding: 0.5rem;
margin: 1rem;
border: 2px solid #ff7d7d;
border-radius: 10000px;
transition: 0.2s ease;
}
#output {
word-break: break-all;
min-height: 28px;
min-width: 50px;
max-width: 80%;
background-color: #1f1f1f;
color: white;
border: 0px;
font-size: 1.5rem;
font-weight: 700;
padding: 0.5rem;
margin: 1rem;
border: 2px solid #ff7d7d;
border-radius: 28px;
transition: 0.2s ease;
}
.swup-transition-move {
transition: 0.4s;
opacity: 1;
transform: translateY(0px);
}
html.is-animating .swup-transition-move {
opacity: 0;
transform: translateY(20px);
}