-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
58 lines (49 loc) · 848 Bytes
/
app.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.wrapper {
width: 100%;
max-width: 1200px;
margin: 1rem auto 0;
display: flex;
gap: 1rem;
justify-content: start;
align-items: start;
padding: 1rem;
}
.editor {
width: 100%;
max-width: 100%;
height: calc(100vh - 13rem);
}
.output {
height: calc(100vh - 6.9rem);
transition: all 1s ease;
width: 0%;
max-width: 0%;
padding: 1rem;
}
.output.active {
width: 100%;
max-width: 100%;
border: 1px solid #ccc;
}
.btn {
padding: .5rem 1rem;
color: white;
margin-top: 1rem;
border: none;
border-radius: 2rem;
cursor: pointer;
}
.preview-button {
background-color: rgba(55, 68, 71, 0.276);
}
.save-button {
background-color: rgb(87, 171, 194);
}
.output img {
width: 100%;
}