-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (69 loc) · 1.23 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
html{
padding: 0;
margin: 0;
background-color: rgb(61, 56, 56);
color: white;
}
main{
display: flex;
flex-direction: row;
}
#imageContainer{
flex: 3;
width: 200%;
/* margin-right: 0%; */
}
#buttonWrapper{
flex: 1;
/* width: 100%; */
text-align: right;
display: flex;
flex-direction: column;
}
#editor{
color: white;
width: 30%;
}
canvas{
width: 100%;
}
#clearDownload{
display: flex;
flex-direction: row;
}
#clearDownload > button{
text-align: center;
border-bottom: none;
}
#chooseFile{
display: flex;
padding: 0.7rem;
flex-direction: column;
color: black;
font-size: 1.5rem;
font-weight: 500;
background-color: rgb(128, 120, 120);
}
button{
width: 100%;
background-color: black;
color: white;
border-bottom: 1px solid white;
padding: 0.5rem;
font-family: 0.7rem;
font-weight: 300;
font-size: 1rem;
text-align: left;
cursor: pointer;
height: 2.8rem;
}
#chooseFile > button{
width: 50%;
background-color: white;
color: black;
}
@media only screen and (min-width: 600px) {
body{
max-width: 800px;
}
}