phone version
This commit is contained in:
parent
823a598d41
commit
5525cb6edc
15
index.css
15
index.css
@ -243,3 +243,18 @@ body {
|
||||
color: #f5f5f5;
|
||||
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%;
|
||||
}
|
||||
}
|
||||
|
@ -2,8 +2,9 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>IRS Software Projects</title>
|
||||
<link rel="stylesheet" href="index.css" />
|
||||
<script src="index.js" defer></script>
|
||||
<link rel="stylesheet" href="index.css"/>
|
||||
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -2,7 +2,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<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>
|
||||
|
||||
<body>
|
||||
@ -28,7 +29,7 @@
|
||||
<p class="sat-rs-desc">
|
||||
sat-rs is a framework with the primary goal to provide re-usable
|
||||
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
|
||||
general design considerations are based on the
|
||||
<a href="index.html">FSFW</a>
|
||||
|
Reference in New Issue
Block a user