-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
197 lines (163 loc) · 3.9 KB
/
styling.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
html{
scroll-behavior: smooth;
}
.title {
font-size: 1600px;
align-items: right;
display: flex;
}
.header {
position: relative; /* Makes the header a reference for absolutely positioned child elements */
width: 100%; /* Ensures the header spans the width of its container */
height: 60em; /* Set the height of your header */
background: #333; /* Just an example background color */
color: white; /* Text color */
/* Other styling for your header */
}
.title-container {
position: absolute; /* Positions the title container relative to the header */
top: 0; /* Adjust these values to position your title as needed */
left: 0;
width: 100%; /* Makes the title container span the entire width of the header */
height: 100%; /* Makes the title container cover the entire height of the header */
display: flex;
justify-content: right; /* Centers the content horizontally */
align-items: top; /* Centers the content vertically */
/*background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent overlay to the title container */
color: white; /* Text color for the title */
/* Other styling for your title container */
z-index: 12;
font-size: 5em;
}
.h3Title{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 35px;
}
.bigTitle {
font-family: 'Courier New', Courier, monospace;
font-style: oblique;
}
.end{
font-size: 16px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/* Integration section */
.container {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 30px;
width: 600px;
text-align: center;
margin: 0 auto; /* Center horizontally */
display: flex;
flex-direction: column;
align-items: center;
}
.integration-container {
max-width: 600px;
margin: 0 auto;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
font-size: 42px;
margin-bottom: 20px;
}
.upload-form {
display: flex;
flex-direction: column;
align-items: center;
}
.file-input {
display: none;
}
.upload-button, .submit-button {
padding: 10px 20px;
background-color: #6A5ACD;
color: white;
cursor: pointer;
border-radius: 5px;
}
.submit-button {
margin-top: 10px;
}
.result {
margin-top: 20px;
font-size: 18px;
}
/* Slideshow container */
.slideshow-container {
max-width: max-content;
margin: auto;
}
.slide-content {
display: flex; /* Use flexbox to align items horizontally */
align-items: left; /* Align items vertically */
}
/* Image inside slide */
.slide-image {
width: 500px; /* Set the width of the image */
display: inline-block;
vertical-align: top;
}
/* Text beside the image */
.slide-text {
font-size: 40px;
display: inline-block;
vertical-align: top;
}
.description{
font-size: 30px;
padding-left: 20px;
display:inline-block ;
vertical-align: top;
font-family:Arial, Helvetica, sans-serif
}
.image-description-container {
display: flex;
align-items: flex-start; /* Ensure the items are aligned at the top */
}
/* Caption text */
.texts {
color: #f2f2f2;
font-size: 40px;
padding: 8px 12px;
position: fixed;
right: 8px;
width: 100%;
text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
color: #f2f2f2;
font-size: 150px;
padding: 8px 12px;
position: absolute;
top: 0;
}
/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #717171;
}
/* Fading animation */
.fade {
animation-name: fade;
animation-duration: 2.5s;
}
@keyframes fade {
from {opacity: .1}
to {opacity: 1}
}