63 lines
1.4 KiB
CSS
63 lines
1.4 KiB
CSS
/*
|
|
Algo: a dekstop environment look-a-like in your web browser
|
|
Copyright (C) 2009 Niels Serup
|
|
|
|
This file is part of Algo.
|
|
|
|
Algo is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Algo is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Algo. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* This css file includes some basic formatting stuff,
|
|
which can easily be overridden by internal stylesheets. */
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 12px;
|
|
font-family: 'dejavu sans' arial;
|
|
}
|
|
|
|
body {
|
|
padding: 3px;
|
|
}
|
|
|
|
a:link, a:visited {
|
|
text-decoration: none;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: dotted;
|
|
border-bottom-color: #0033ff;
|
|
color: #0033ff;
|
|
}
|
|
|
|
a:hover {
|
|
border-bottom-color: #003399;
|
|
color: #003399;
|
|
}
|
|
|
|
.header {
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
} |