-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (44 loc) · 976 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (44 loc) · 976 Bytes
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
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #2c3e50; /* Darker blue for an AI feel */
color: white;
text-align: center;
padding: 1rem;
}
main {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 1rem;
background-color: #2c3e50;
color: white;
}
#output-area {
margin-top: 20px;
border: 1px solid #ccc;
padding: 10px;
font-family: monospace; /* Monospace font for code/AI output */
}
button {
background-color: #3498db; /* A nice blue button color */
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background-color: #2980b9; /* Darker blue on hover */
}