Skip to content

Commit

Permalink
utp
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaquer authored Dec 5, 2024
1 parent 839e9c5 commit 3f326f4
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
display: flex;
flex-direction: column;
align-items: center;
padding: 0 20px; /* Add padding to center content */
}
.header {
text-align: center;
Expand Down Expand Up @@ -173,6 +174,52 @@
.footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.main-title {
font-size: 2em;
}
.main-content img {
width: 150px;
}
.section-title {
font-size: 1.2em;
}
.carousel {
max-width: 100%;
}
.carousel img {
width: 100%;
}
.carousel-text {
font-size: 0.9em;
}
.carousel-nav i {
padding: 5px;
}
}
@media (max-width: 480px) {
.main-title {
font-size: 1.5em;
}
.main-content img {
width: 100px;
}
.section-title {
font-size: 1em;
}
.carousel {
max-width: 100%;
}
.carousel img {
width: 100%;
}
.carousel-text {
font-size: 0.8em;
}
.carousel-nav i {
padding: 5px;
}
}
</style>
</head>
<body>
Expand Down

0 comments on commit 3f326f4

Please sign in to comment.