-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (49 loc) · 906 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
transition: background-color 0.3s, color 0.3s;
}
body.dark-mode {
background-color: #333;
color: #f4f4f4;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
background-color: #333;
color: #f4f4f4;
}
textarea {
display: block;
width: 100%;
height: 200px;
margin-bottom: 1rem;
padding: 1rem;
font-size: 1rem;
resize: vertical;
}
button-container {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1rem;
}
button {
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
flex: 1;
}
pre {
background-color: #f4f4f4;
border: 1px solid #ccc;
padding: 1rem;
overflow-x: auto;
}
pre.dark-mode {
background-color: #444;
border-color: #666;
}