-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (114 loc) · 2.07 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=VT323&display=swap');
html {
background-color: #404040;
margin: 0;
color: antiquewhite;
}
a {
color: antiquewhite;
}
a:visited {
color: lightpink;
}
body {
margin: 0;
}
main {
font-family: "Electrolize", Helvetica, Arial;
}
#initial-config {
display: grid;
grid-template-columns: 30% 70%;
}
.pixel-other {
font-size: 18px;
line-height: 1;
}
#settings {
padding-right: 5vw;
padding-left: 5vw;
border-right: 1px solid antiquewhite;
}
#title {
font-family: 'VT323', monospace, Arial;
background-color: #171717;
font-size: 70px;
text-align: center;
margin: 0 0 2vw 0;
padding: 13px;
}
#settings {
table-layout: fixed;
font-size: 24px;
margin: 0 auto;
line-height: 2;
}
#original-image-section {
padding-left: 5vw;
}
/*new image*/
#transformed-image-section {
margin-top: 10px;
margin-bottom: 20px;
}
#new-image-subtitle {
font-size: 30px;
text-align: center;
}
#new-image {
display: block;
margin-left: auto;
margin-right: auto;
}
.new-image-btns {
align-items: center;
}
#new-image-canvas {
margin: 0 auto;
overflow: visible;
}
/*footer*/
footer{
background-color: #171717;
padding: 10px 10vw 10px 10vw;
margin: 0;
}
/*modal*/
#modal {
background-color: gray;
color: black;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 50%;
z-index: 1;
padding: 20% 0 0 45%;
display: none;
}
#modal-text {
opacity: 100%;
font-size: 40px;
}
/*image resizer*/
#image-resizer-text {
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
}
/*canvas*/
#canvas-div {
text-align: center;
}
@media print {
#title, #settings, #image-resizer-section, #new-image-subtitle, #new-image-btns, #image-dimensions, #image-upload, footer {
display: none;
}
#user-image, #new-image-canvas {
display: block;
}
#canvas-div {
text-align: left !important;
}
}