Skip to content

Commit

Permalink
Tune style a bit, add logo.
Browse files Browse the repository at this point in the history
  • Loading branch information
dl8dtl committed Jun 9, 2024
1 parent 9d85490 commit f103e22
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 5 deletions.
Binary file added docs/avr-libc-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<head>
<title>AVR-LibC</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="avrdude.css" type="text/css" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body bgcolor="#feffe2">
<body bgcolor="#fefff0">
<!--img src="logo.png" alt="Logo" /-->
<h1>AVR-LibC</h1>
<h2>Summary</h2>
<table cellpadding=5 width="80%">
<table class="intro">
<tr>
<!--<td><img src="xxx" alt="xxx"></td>-->
<td>
<td><img src="avr-libc-logo.png" alt="Logo"></td>
<td id="text">
<p>AVR-LibC is a Free Software project whose goal is to provide a high
quality C library for use with GCC on Atmel AVR microcontrollers.</p>

Expand Down
36 changes: 36 additions & 0 deletions docs/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
body {
font-family: sans-serif;
font-size: 100%;
background-color: #fefff0;
color: #000;
padding: 0;
}

h1 { font-size: 50px; text-shadow: .05em .05em #ccc; text-align: center; }

a {
color: #c04080;
text-decoration: underline;
}

a:visited {
color: #804080;
text-decoration: none;
}

a:hover {
text-decoration: underline;
color: #ff4080;
}

/* Responsive Styles */

table.intro {
max-width: 600px;
}

@media screen and (max-height: 800px) {
h1 {
font-size: 30px;
}
}

0 comments on commit f103e22

Please sign in to comment.