phone version

This commit is contained in:
Nadine Eunuos 2023-10-10 18:19:07 +02:00
parent 823a598d41
commit 5525cb6edc
3 changed files with 21 additions and 4 deletions

View File

@ -243,3 +243,18 @@ body {
color: #f5f5f5; color: #f5f5f5;
transition: color 0.3s ease-in-out; transition: color 0.3s ease-in-out;
} }
@media only screen and (max-device-width: 480px) {
#sat-rs-content {
padding-left: 0px;
padding-right: 0px;
}
.content {
padding-left: 20px;
padding-right: 20px;
height: 100vh;
}
.side-bar {
height: 100%;
}
}

View File

@ -2,8 +2,9 @@
<html> <html>
<head> <head>
<title>IRS Software Projects</title> <title>IRS Software Projects</title>
<link rel="stylesheet" href="index.css" /> <link rel="stylesheet" href="index.css"/>
<script src="index.js" defer></script>
</head> </head>
<body> <body>

View File

@ -2,7 +2,8 @@
<html> <html>
<head> <head>
<title>IRS Software Projects</title> <title>IRS Software Projects</title>
<link rel="stylesheet" href="index.css" /> <link rel="stylesheet" media="screen and (max-width: 699px)" href="phone.css"/>
<link rel="stylesheet" media="screen and (min-width: 700px)" href="index.css"/>
</head> </head>
<body> <body>
@ -28,7 +29,7 @@
<p class="sat-rs-desc"> <p class="sat-rs-desc">
sat-rs is a framework with the primary goal to provide re-usable sat-rs is a framework with the primary goal to provide re-usable
components to write on-board software for remote systems like rovers components to write on-board software for remote systems like rovers
or satellites. It is specifically written for the special or satelites. It is specifically written for the special
requirements for these systems. A lot of the architecture and requirements for these systems. A lot of the architecture and
general design considerations are based on the general design considerations are based on the
<a href="index.html">FSFW</a> <a href="index.html">FSFW</a>