Upload style.css
Browse files- static /style.css +140 -0
static /style.css
ADDED
@@ -0,0 +1,140 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.container{
|
2 |
+
display: flex;
|
3 |
+
width: 100%;
|
4 |
+
max-width: 1450px;
|
5 |
+
}
|
6 |
+
|
7 |
+
.left-container, .right-container{
|
8 |
+
flex: 1;
|
9 |
+
padding: 20px;
|
10 |
+
}
|
11 |
+
|
12 |
+
.upload-container {
|
13 |
+
border: 5px dotted #ccc;
|
14 |
+
border-radius: 20px;
|
15 |
+
width: 620px;
|
16 |
+
height: 70px;
|
17 |
+
display: flex;
|
18 |
+
margin-top: 20px;
|
19 |
+
justify-content: center;
|
20 |
+
align-items: center;
|
21 |
+
background-color: #fff;
|
22 |
+
cursor: pointer;
|
23 |
+
}
|
24 |
+
|
25 |
+
.upload-label {
|
26 |
+
margin-top:80px;
|
27 |
+
color: #888;
|
28 |
+
text-align: center;
|
29 |
+
cursor: pointer;
|
30 |
+
display: block;
|
31 |
+
}
|
32 |
+
.upload-input{
|
33 |
+
color: #9e59ec;
|
34 |
+
margin-top: 10px;
|
35 |
+
margin-left: 70px;
|
36 |
+
justify-content: center;
|
37 |
+
}
|
38 |
+
|
39 |
+
.upload-button{
|
40 |
+
border: 2px solid #9e59ec;
|
41 |
+
border-radius: 20px;
|
42 |
+
background-color: #9e59ec;
|
43 |
+
color: white;
|
44 |
+
cursor: pointer;
|
45 |
+
margin-left: 90px;
|
46 |
+
margin-top: 45px;
|
47 |
+
padding: 10px 20px;
|
48 |
+
}
|
49 |
+
|
50 |
+
.output-container{
|
51 |
+
margin-top: 20px;
|
52 |
+
}
|
53 |
+
.output-label h3{
|
54 |
+
margin-top: 65px;
|
55 |
+
|
56 |
+
}
|
57 |
+
.output-box{
|
58 |
+
border-radius: 10px;
|
59 |
+
border: 2px solid #ccc;
|
60 |
+
padding: 0.5em;
|
61 |
+
margin-left: 15px;
|
62 |
+
width: 600px;
|
63 |
+
height: 500px;
|
64 |
+
font-size: 16px;
|
65 |
+
line-height: 1.2;
|
66 |
+
transition: all 0.2s;
|
67 |
+
outline: none;
|
68 |
+
transition: border-color 0.5s;
|
69 |
+
}
|
70 |
+
|
71 |
+
.output-box.updated {
|
72 |
+
border-color: #604cc3;
|
73 |
+
}
|
74 |
+
|
75 |
+
/* Typing effect styling */
|
76 |
+
@keyframes typing {
|
77 |
+
from { width: 0; }
|
78 |
+
to { width: 100%; }
|
79 |
+
}
|
80 |
+
|
81 |
+
.output-box.typing {
|
82 |
+
border-right: 2px solid #000;
|
83 |
+
white-space: nowrap;
|
84 |
+
overflow: hidden;
|
85 |
+
width: 0;
|
86 |
+
animation: typing 3s steps(40, end) forwards; /* Adjust duration and steps as needed */
|
87 |
+
}
|
88 |
+
|
89 |
+
.input-label{
|
90 |
+
font-weight: 50;
|
91 |
+
margin-bottom: 20px;
|
92 |
+
}
|
93 |
+
|
94 |
+
.input-box{
|
95 |
+
width: 650px;
|
96 |
+
height: 400px;
|
97 |
+
margin-left: 10px;
|
98 |
+
border-radius: 10px;
|
99 |
+
background-color:rgb(192, 192, 192);
|
100 |
+
padding: 1rem;
|
101 |
+
outline: none;
|
102 |
+
border: 2px solid transparent;
|
103 |
+
font-size: 16px;
|
104 |
+
line-height: 1.2;
|
105 |
+
transition: all 0.2s;
|
106 |
+
}
|
107 |
+
.input-box:hover{
|
108 |
+
cursor: pointer;
|
109 |
+
background-color: #eeee;
|
110 |
+
|
111 |
+
}
|
112 |
+
.input-box:focus{
|
113 |
+
cursor: text;
|
114 |
+
color: #333;
|
115 |
+
background-color:white;
|
116 |
+
border-color: #3333;
|
117 |
+
}
|
118 |
+
|
119 |
+
.enter-button{
|
120 |
+
font-size: 17px;
|
121 |
+
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
122 |
+
color: white;
|
123 |
+
padding: 10px 25px;
|
124 |
+
margin:0.5rem;
|
125 |
+
margin-left: 290px;
|
126 |
+
border-radius: 20px;
|
127 |
+
border: none;
|
128 |
+
outline: none;
|
129 |
+
cursor: pointer;
|
130 |
+
background: #9e59ec;
|
131 |
+
transition: 0.5s;
|
132 |
+
align-items: center;
|
133 |
+
|
134 |
+
}
|
135 |
+
.enter-button:hover{
|
136 |
+
background: var(--clr);
|
137 |
+
letter-spacing: 0.2em;
|
138 |
+
box-shadow: 0 0 20px var(--clr);
|
139 |
+
|
140 |
+
}
|