-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
72 lines (59 loc) · 1.64 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
*{
box-sizing: border-box;
font-family: 'IBM Plex Sans', Arial, Helvetica, sans-serif;
font-size: 16px;
color: #000;
line-height: 1.5;
margin: 0;
padding: 0;
}
body{
margin: 30px;
padding: 10px;
}
h1{
font-size: 36px;
font-weight: 600;
margin-bottom: 20px;
}
p {
padding: 10px;
}
#text_container {
padding: 0px;
float: left;
}
input{
width: 100%; /* Make it fill the available width */
min-height: 40px; /* Minimum height */
max-width: 75ch; /* Maximum width */
resize: vertical; /* Allow vertical resizing */
border: 1px solid #ccc; /* Add a border for clarity */
border-radius: 5px;
padding: 5px; /* Add padding for readability */
font-size: 16px; /* Adjust font size as needed */
line-height: 1.5; /* Line height for readability */
}
textarea{
width: 100%; /* Make it fill the available width */
min-height: 40px; /* Minimum height */
max-width: 75ch; /* Maximum width */
resize: vertical; /* Allow vertical resizing */
border: 1px solid #ccc; /* Add a border for clarity */
border-radius: 5px;
padding: 5px; /* Add padding for readability */
font-size: 16px; /* Adjust font size as needed */
line-height: 1.5; /* Line height for readability */
display: block;
margin-top: 40px;
}
/* Style for the buttons */
button {
/* background-color: #007BFF; Background color */
color: #fff; /* Text color */
border: none; /* Remove border */
border-radius: 5px;
padding: 8px 12px; /* Add padding */
margin: 10px; /* Add spacing between buttons */
cursor: pointer; /* Show pointer cursor on hover */
}