-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (97 loc) · 1.97 KB
/
styles.css
File metadata and controls
115 lines (97 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
font-family: 'Times New Roman', Times, serif;
line-height: 1.6;
margin: 0;
padding: 0;
}
.math {
display: inline-block;
font-family: 'Times New Roman', Times, serif; /* Specify a font for math content */
}
link[rel="icon"] {
border-radius: 50%;
}
header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}
nav {
background-color: #e5e5ff;
padding: 0.5rem;
text-align: center; /* Center the content inside the navigation */
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin: 0 10px; /* Adjust the margin as needed */
}
nav a {
text-decoration: none;
color: #000;
font-weight: bold;
font-size: 18px;
padding: 5px 10px; /* Set padding for both normal and hover state */
border-radius: 5px; /* Set border-radius for both normal and hover state */
transition: color 0.3s, background-color 0.3s; /* Add a smooth transition effect for color and background-color */
}
nav a:hover {
color: #ffffff;
background-color: #00004c;
}
/* Style for the current page link */
nav li.current a {
color: #ffffff;
background-color: #00004c;
}
footer {
text-align: center;
padding: 10px;
color: #000;
}
main {
margin: 20px;
}
#chat-launcher {
position: fixed;
bottom: 20px;
right: 20px;
background: #2c3e50;
color: white;
padding: 12px 16px;
border-radius: 30px;
cursor: pointer;
z-index: 1000;
font-family: sans-serif;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#chatbox {
position: fixed;
bottom: 80px;
right: 20px;
width: 360px;
height: 500px;
border: 1px solid #ccc;
background: white;
display: none;
flex-direction: column;
z-index: 1001;
box-shadow: 0 8px 16px rgba(0,0,0,0.3);
border-radius: 10px;
overflow: hidden;
}
#chatbox-header {
background: #2c3e50;
color: white;
padding: 10px;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
font-family: sans-serif;
}