I am curious to learn how I can adjust the CSS of my website in Bootstrap based on different screen sizes. I want to change text sizes and images, but I'm unsure about how to do it. Thank you for any guidance.
Here is a snippet of my code:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/onepage-scroll.css">
<meta charset="UTF-8">
<title>Summa</title>
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Sniglet' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Sacramento' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Raleway:300" rel="stylesheet">
<!-- End of Fonts -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<link rel="stylesheet" href="estilos.css">
<link rel="stylesheet" href="css/hover-min.css">
...
CSS:
#video1{
min-height: 100%;
min-width: 100%;
visibility: visible;
}
#logo{
position: absolute;
height:70%;
width: 70%;
display: inline-block;
...
.is-hidden {
display: none;
}
I have spent time exploring CSS in Bootstrap documentation, but unfortunately, I haven't found specific information on this issue. If anyone has insights or suggestions, I would greatly appreciate it. Thank you!