-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (61 loc) · 1.21 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
body {
display: flex;
height: 100vh;
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
#inputContainer, #outputContainer {
flex: 1;
display: inline;
overflow: hidden;
box-sizing: border-box;
position: relative;
}
#inputText {
width: 100%;
box-sizing: border-box;
}
#outputImage {
position: relative;
white-space: pre-wrap;
user-select: none;
}
.draggable {
background-color: #4CAF50;
display: inline-flex;
cursor: grab;
position: absolute;
margin-top: 0;
margin-bottom: 0;
z-index: 1;
}
.draggable:hover {
background-color: #45a049;
}
.droppable {
height: 20px;
border-bottom: 2px dashed #000;
position: relative;
z-index: 0;
}
.draggableClone {
position: absolute;
}
#armazemdeacordes {
flex: 1;
display: flex; /* Use flex container */
overflow: hidden;
background-color: blueviolet;
width: 10px;
flex-direction: row; /* Set the direction to row */
}
.newLine{
height: 1.5 em;
align-items: center;
text-align: center;
width: 100%;
display: flex;
background-color: rgb(224, 224, 224);
}