-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
103 lines (87 loc) · 1.82 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
/* #mainBody::before{
content: "";
position: absolute;
background: url('./img/marius-niveri-rfg4l6_lu3c-unsplash.jpg') no-repeat center center/cover;
height: 100%;
top: 0px;
bottom: 0px;
width: 100%;
z-index: -1;
opacity:0.89;
} */
#mainBody{
background-color: #000000;
background-image: linear-gradient(315deg, #000000 0%, #414141 74%);;
}
#floatingTextarea, #decoded, #encoded{
border: 2px solid black;
min-height: 15rem;
overflow-y: scroll;
overflow-x: auto;
font-family: 'Noto Sans JP', 'sans-serif';
font-size: 1.5rem;
background-color: rgb(78, 76, 76);
color: white;
}
table, th, td{
/* border: 2px solid black; */
border-radius: 20px;
outline: none;
text-align: center;
}
.tableStyle{
color:black;
font-size: 1.4rem;
font-family: 'Ubuntu', sans-serif;
}
#btnContainer{
display: flex;
text-align: center;
justify-content: center;
}
#compress{
border: 2px solid white;
background-color: black;
color: white;
font-size: 1.5rem;
border-radius: 20px;
padding: 10px;
}
#reset{
background-color: white;
color: black;
border: 2px solid black;
border-radius: 15px;
font-size: 1.5rem;
}
label{
font-size: 1.5rem;
color: whitesmoke;
}
#sizeContainer{
display: grid;
grid-template-rows: 1fr;
grid-template-columns: 1fr 1fr;
grid-gap: 1rem;
padding: 20px;
}
#before, #after{
display: flex;
justify-content: center;
background-color: black;
border: 4px solid white;
height: auto;
text-align: center;
font-size: 2rem;
font-family: 'Ubuntu', sans-serif;
font-weight: bold;
padding: 10px;
}
@media only screen and (max-width: 600px) {
section{
min-width: 800px;
}
header{
min-width: 800px;
}
}