-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
57 lines (53 loc) · 824 Bytes
/
main.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
* {
margin: 0;
padding: 0;
font-family: "Roboto",sans-serif;
}
#imgSrcForm {
width: 100%;
height: 100vh;
text-align: center;
padding: 5vh 0;
}
#imgSrcForm input {
width: 25%;
}
input,button {
border: none;
background-color: transparent;
font-size: 20px;
border: 2px solid #ccc;
outline: none;
padding: 5px 7.5px;
}
button {
cursor: pointer;
border-left: none;
}
input:focus,button:hover{
border-color: black;
}
button:hover{
background-color: black;
color: white;
}
#mainImage {
width: 65%;
height: 100vh;
display: block;
float: left;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
#imageEditing {
width: 35%;
height: 100vh;
float: left;
box-sizing: border-box;
padding: 1.25% 5%;
overflow-y: scroll;
}
#imageEditing div {
margin-bottom: 12.5px;
}