-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (56 loc) · 892 Bytes
/
style.css
File metadata and controls
69 lines (56 loc) · 892 Bytes
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
html{
font-family: 'Noto Sans JP', sans-serif;
}
button,
input,
select,
textarea,
pre,
th,
td,
li,
dt,
dd {
font-family: 'Noto Sans JP', sans-serif;
}
#header{
text-align: center;
}
#title{
font-size: 300%;
}
#body{
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
}
.exchangeButton{
padding: 80px 0px;
border-radius: 100px;
font-size: 100%;
}
#encode>* {
display: inline-block;
vertical-align: middle;
}
#encodeButton {
background-color: rgb(133, 83, 83);
color: white;
}
#encodeButton:active {
background-color: rgb(82, 44, 44);
color: white;
}
#decode>* {
display: inline-block;
vertical-align: middle;
}
#decodeButton {
background-color: rgb(187, 206, 197);
color: white;
}
#decodeButton:active {
background-color: rgb(155, 168, 162);
color: white;
}