-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (33 loc) · 759 Bytes
/
style.css
File metadata and controls
38 lines (33 loc) · 759 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
header, article, footer {
padding: 20px;
margin: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
header h1, article h2 {
color: #333;
}
ul, ol {
margin: 20px 0;
}
.hiddenPrompt {
visibility: visible; /* Ensure it's not completely removed from the flow */
color: white; /* Matches the background, making it 'invisible' */
height: auto; /* Adjust as needed */
}
footer {
text-align: center;
padding: 20px;
margin-top: 20px;
background-color: #eee;
border-radius: 0 0 10px 10px;
}