-
Notifications
You must be signed in to change notification settings - Fork 0
/
art.css
98 lines (84 loc) · 1.67 KB
/
art.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
body {
background-color: white;
}
h1 {
font-size: 200%;
}
.main_content {
/* margin-left: auto; */
/* margin-right: auto; */
width: 80%;
margin: 0 auto;
max-width: 500px;
text-align: center;
}
.description_text p {
font-size: 150%;
}
.description_text ul {
text-align: start;
}
.pic_wrapper {
height: 256px;
width: 256px;
margin: 0 auto;
padding: 0;
/* border: solid thin steelblue; */
background-image: url("./empty.png");
}
.pixelart {
-ms-interpolation-mode: nearest-neighbor; /* IE8+ */
image-rendering: -webkit-optimize-contrast; /* Safari (WebKit) */
image-rendering: -moz-crisp-edges; /* Firefox (Gecko) */
image-rendering: -o-crisp-edges; /* Opera 12.x */
image-rendering: pixelated; /* Chrome 41+, Opera 29+ (CSS4) */
width: 256px;
padding: 0;
margin: 0;
}
.button {
display: block;
color: white;
background-color: steelblue;
padding: 12px 24px;
margin: 12px 10%;
border-radius: 12px;
}
.info_table {
width: 80%;
margin: 24px 10%;
}
.info_table th {
width: 40%;
text-align: start;
}
#copy_ok_message {
opacity: 0;
font-weight: bold;
color: rgb(24, 24, 24);
}
.code_div {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
box-sizing: border-box;
margin: 0 auto;
}
#code {
height: 100px;
flex-grow: 1;
height: auto;
}
.copy_button {
height: 24px;
padding: 12px 12px;
margin: 6px;
color: white;
background-color: steelblue;
border-radius: 12px;
text-align: center;
}
.convdata {
display: none;
}