File size: 833 Bytes
d6d4c41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
 background-color: #f2f2f2;
 font-family: Arial, sans-serif;
}

h1 {
 color: #0075ff;
 margin: 3rem;
}

#text-input {
 width: 100%;
 height: 200px;
 font-size: 18px;
 padding: 10px;
 border: none;
 border-radius: 5px;
 box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

#output {
 width: 100%;
 height: 500px;
 background-color: #ededed;
 border-radius: 5px;
 margin: 3rem;
}

.btn {
 width: 100%;
 height: 30px;
 font-size: 18px;
 padding: 10px;
 border: none;
 border-radius: 5px;
 box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
 background-color: #0075ff;
 color: #ffffff;
 cursor: pointer;
}

.prose {
 font-family: Arial, sans-serif;
 background-color: #ffffff;
 border: none;
 border-radius: 5px;
 padding: 10px;
 text-align: center;
 margin: 3rem;
}

footer {
 background-color: #ededed;
 text-align: center;
 padding: 10px;
}