-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (48 loc) · 808 Bytes
/
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
*{
font-family: 'PT Mono', 'monospace' ;
}
html{
font-size: 1.2rem;
}
.container{
display: flex;
width: 100%;
flex-wrap: wrap;
}
.text-containter{
flex: 1;
flex-basis: 300px;
margin: 2rem;
position: relative;
}
.text-field{
width: 100%;
background-color: #cfff95;
border: 2px solid #4b830d;
border-radius: 10px;
padding: 0.5rem;
position: relative;
}
.text-headline{
text-align: center;
display: inline-block;
width: 100%;
}
.headline-wrap{
position: relative;
}
#compile{
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
button{
background-color: #cfff95;
border: 2px solid #4b830d;
border-radius: 10px;
padding: 0.5rem;
}
.output-containter{
flex-basis: 100%;
}