-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
151 lines (137 loc) · 2.77 KB
/
styles.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/* General styling */
body {
font-family: Arial, sans-serif;
background-color: #1e1e2f;
/* Dark mode background */
color: #cce4ff;
/* Light blue text */
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
margin: 0;
}
/* Container for centering content */
.container {
text-align: center;
max-width: 800px;
width: 100%;
background-color: #28293d;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
}
/* Title styling */
.title {
font-size: 1.8rem;
color: #a3c9ff;
margin-bottom: 15px;
}
/* Input field styling */
#youtubeLink {
width: 100%;
max-width: 400px;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
background-color: #2a2a3b;
color: #cce4ff;
border: 1px solid #a3c9ff;
outline: none;
box-sizing: border-box;
}
/* Button styling */
#embedButton {
padding: 10px 20px;
border-radius: 5px;
background-color: #4183c4;
color: #fff;
border: none;
cursor: pointer;
font-weight: bold;
}
/* Video and Transcript Container */
.video-transcript-container {
display: flex;
gap: 20px;
max-width: 1200px;
width: 100%;
}
/* Video frame styling */
.video-container iframe {
width: 560px;
height: 315px;
border-radius: 10px;
background-color: #000;
}
/* Transcript styling */
.transcript-container {
max-width: 600px;
background-color: #2a2a3b;
border-radius: 10px;
padding: 20px;
color: #cce4ff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.transcript-container h2 {
color: #a3c9ff;
margin-top: 0;
}
/* Chatbot styling */
#chatbotContainer {
position: fixed;
bottom: 20px;
right: 20px;
width: 300px;
max-height: 400px;
background-color: #2a2a3b;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
display: none;
/* Hidden initially */
flex-direction: column;
justify-content: space-between;
}
/* Chatbot header */
#chatbotHeader {
background-color: #4183c4;
color: #fff;
padding: 10px;
text-align: center;
cursor: pointer;
font-weight: bold;
}
/* Chat display area */
#chatDisplay {
padding: 10px;
height: 300px;
overflow-y: auto;
color: #cce4ff;
}
/* Chat input area */
#chatInputArea {
display: flex;
padding: 10px;
background-color: #1e1e2f;
border-top: 1px solid #4183c4;
}
#chatInput {
flex: 1;
padding: 8px;
border-radius: 5px;
border: none;
outline: none;
background-color: #2a2a3b;
color: #cce4ff;
}
#sendButton {
padding: 8px 12px;
margin-left: 5px;
background-color: #4183c4;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}