-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 1015 Bytes
/
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
/* Apply a white background and adjust text color */
body {
margin: 0;
font-family: Arial, sans-serif;
background: #ffffff; /* White background */
color: #000; /* Black text */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
/* Canvas container styling */
#canvas-container {
width: 100%;
height: 100%;
overflow: hidden;
}
/* Header styling */
h1, h2, p {
text-align: center;
margin: 20px;
}
/* Navigation bar styling */
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
background: #f4f4f4; /* Light gray for contrast */
border-bottom: 2px solid #ddd;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #000;
font-weight: bold;
}
nav ul li a:hover {
color: #007BFF; /* Blue hover effect */
}
/* Footer styling */
footer {
text-align: center;
margin-top: auto;
padding: 10px;
background: #f4f4f4;
border-top: 2px solid #ddd;
}