-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (51 loc) · 1.03 KB
/
style.css
File metadata and controls
58 lines (51 loc) · 1.03 KB
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
main{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
main > img{
width: 560px;
height: 320px;
margin: 10px;
object-fit: cover;
}
main > h1{
margin: 10px;
font-style: italic;
font-size: 50px;
}
main > #timezone{
margin: 10px;
}
#thanatos {
display: flex;
flex-direction: column; /* stack vertically */
gap: 10px; /* space between elements */
max-width: 600px; /* optional, limits width */
margin: 0 auto; /* center horizontally */
text-align: center;
}
#queryInput {
padding: 8px;
font-size: 16px;
width: 100%;
box-sizing: border-box; /* makes width include padding */
width: 300px;
}
#askButton {
padding: 8px 16px;
font-size: 16px;
cursor: pointer;
width: 300px;
}
#answer {
margin-top: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 8px;
background-color: #f9f9f9;
white-space: pre-wrap; /* preserves line breaks */
min-width: 300px;
}