Skip to content

Commit 6ee9d73

Browse files
Deploy preview for PR 84 🛫
1 parent 48c1b51 commit 6ee9d73

File tree

8 files changed

+14489
-0
lines changed

8 files changed

+14489
-0
lines changed

‎pr-preview/pr-84/_astro/App.DnPh-PVm.js‎

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pr-preview/pr-84/_astro/client.9unXo8s5.js‎

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 18 additions & 0 deletions
Loading

‎pr-preview/pr-84/_astro/index.CIW6EZEp.css‎

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pr-preview/pr-84/_astro/index.WFquGv8Z.js‎

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pr-preview/pr-84/index.css‎

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
body, div, input, select, button {
2+
font-family: sans-serif;
3+
}
4+
5+
body {
6+
margin: 0;
7+
padding: 0 20px;
8+
}
9+
main {
10+
display: grid;
11+
grid-template-columns: auto 300px;
12+
}
13+
.content {
14+
padding-right: 1em;
15+
}
16+
h1{
17+
padding:0 0.5rem ;
18+
margin-bottom: 1rem;
19+
}
20+
hr {
21+
margin: 20px 0;
22+
}
23+
.link-to-github{
24+
padding: 0.5rem 1rem;
25+
color: #fff;
26+
background-color: #6E24B2;
27+
text-decoration: none;
28+
border-radius: 0.25rem;
29+
position: absolute;
30+
right: 20px;
31+
top: 20px;
32+
}
33+
label {
34+
/* margin-right: 3ex; */
35+
/* white-space: nowrap; */
36+
font-size: 1rem;
37+
text-transform: capitalize;
38+
font-weight: 400;
39+
}
40+
select{
41+
background: #ddd;
42+
}
43+
#svg-render{
44+
overflow-x: auto;
45+
}
46+
svg {
47+
margin: 20px 0;
48+
overflow: visible;
49+
}
50+
51+
#output-svg {
52+
min-height: 300px;
53+
width: 100%;
54+
max-width: 800px;
55+
max-height: 500px;
56+
border-radius: 0.25rem;
57+
padding:0.5rem 0.875rem;
58+
box-sizing: border-box;
59+
outline: none;
60+
border: 2px solid #ccc;
61+
transition: 0.3s ease-out;
62+
63+
}
64+
textarea:focus{
65+
border-color: #FF7F50;
66+
}
67+
.buttons-container{
68+
margin: 1rem 0;
69+
70+
}
71+
.btn{
72+
display: inline-block;
73+
padding: 1rem 1.375rem ;
74+
margin-right: 1rem;
75+
margin-top: 1rem;
76+
background-color: #FF7F50; /* coral color*/
77+
color: #fff;
78+
border: 0px;
79+
border-radius: .25rem;
80+
font-weight: 400;
81+
font-size: 1.1rem;
82+
text-transform: capitalize;
83+
cursor: pointer;
84+
border: 2px solid transparent;
85+
outline: none;
86+
transition: 0.3s ease-out;
87+
text-decoration: none;
88+
}
89+
.btn:hover,.btn:focus{
90+
background-color: #0000; /* dark coral color*/
91+
border-color: #FF7F50;
92+
color: #FF7F50;
93+
}
94+
.input-holder{
95+
margin-bottom: .875rem ;
96+
display: inline-block;
97+
/* white-space:nowrap; */
98+
box-shadow: 0 6px 12px #0002;
99+
padding: 0.625rem;
100+
border-radius: 0.25rem;
101+
max-width: 100%;
102+
background-color: #fff
103+
}
104+
.input{
105+
padding: 0.375rem 0.5rem;
106+
border: 2px solid #d4d6d5 ; /* coral color*/
107+
border-radius: 0.25rem;
108+
outline: none;
109+
display: inline-block;
110+
/* margin-left: 0.25rem; */
111+
font-size: .9rem;
112+
113+
}
114+
.input:focus{
115+
border: 2px solid #FF7F50;
116+
}
117+
#error-display {
118+
color: #FF7F50;
119+
font-weight: bold;
120+
margin-bottom: 1em;
121+
}
122+
123+
/* temporary */
124+
#input-text {
125+
vertical-align: middle;
126+
}

0 commit comments

Comments
 (0)