-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
33 lines (29 loc) · 773 Bytes
/
styles.css
File metadata and controls
33 lines (29 loc) · 773 Bytes
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
/* styles.css */
/* Apply beige background color to the whole website */
body {
background-color: beige;
}
/* Ensure images fit perfectly into their containers */
iframe {
width: 100%;
height: 100%;
object-fit: contain;
}
/* Style for the containers */
.image-container {
width: 90%; /* Increase width as needed */
height: 90%; /* Increase height as needed */
max-width: 600px; /* Set maximum width */
max-height: 400px; /* Set maximum height */
border: 6px solid black;
margin: 20px auto; /* Center horizontally */
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
/* Style for the project description */
.project-description {
text-align: center;
margin-bottom: 20px;
}