-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.css
More file actions
71 lines (64 loc) · 1.42 KB
/
home.css
File metadata and controls
71 lines (64 loc) · 1.42 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
* {
box-sizing: border-box;
}
/* General Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #121212; /* Dark background */
color: #e0e0e0; /* Light text */
min-height: 100vh;
}
/* Study Progress & Chatbot Section */
.study-progress, .chatbot {
background: #1e1e1e; /* Dark background */
padding: 20px;
margin: 20px auto;
width: 50%;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}
.study-progress h2, .chatbot h2 {
color: #66fcf1; /* Soft Cyan for contrast */
}
/* Progress List */
#progressList li {
background: #2a2a2a; /* Slightly lighter dark */
padding: 10px;
margin: 5px;
border-radius: 5px;
color: #ffffff;
}
/* Chatbox */
#chat-box {
width: 90%;
height: 200px;
overflow-y: auto;
background: #2a2a2a; /* Darker background */
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
color: white;
}
/* User Input */
#user-input {
width: 80%;
padding: 10px;
margin-bottom: 10px;
background: #333; /* Dark input field */
color: white;
border: 1px solid #444;
}
/* Buttons */
button {
background-color: #66fcf1;
color: #121212;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a29e;
}