1
0
Fork 0
mirror of https://github.com/mwalbeck/Start-Page.git synced 2025-03-15 07:44:43 +00:00
Start-Page/style.css

117 lines
1.5 KiB
CSS
Raw Permalink Normal View History

2017-04-18 18:45:28 +00:00
* {
font-family: 'DejaVu Sans Mono';
2016-12-05 02:34:33 +00:00
font-weight: normal;
}
html, body{
margin: 0;
padding: 0;
2017-04-18 18:45:28 +00:00
background-color: #232629;
color: #b2b2b2;
2016-12-05 02:34:33 +00:00
font-size: 14px;
}
2017-04-18 18:45:28 +00:00
h3 {
font-size: 14px;
padding-bottom: 0;
margin-bottom: 0;
margin-top: 0;
}
body {
width: 100vw;
height: 100vh;
position: absolute;
display: table;
top: 0;
left: 0;
2016-12-05 02:34:33 +00:00
}
#container {
2017-04-18 18:45:28 +00:00
display: table-cell;
vertical-align: middle;
}
#content {
width: 72%;
margin: 0 auto;
}
#date h3 {
display: inline-block;
padding-bottom: 5px;
}
#date {
2016-12-05 02:34:33 +00:00
-webkit-box-shadow: 1px 1px 20px 0px #000;
-moz-box-shadow: 1px 1px 20px 0px #000;
box-shadow: 1px 1px 20px 0px #000;
2017-04-18 18:45:28 +00:00
background-color: #191919;
2016-12-05 02:34:33 +00:00
margin: 4px;
2017-04-18 18:45:28 +00:00
padding: 12px;
border: 1px solid #706f6e;
2016-12-05 02:34:33 +00:00
}
2017-04-18 18:45:28 +00:00
#timeanddate {
margin: 0;
}
2016-12-05 02:34:33 +00:00
2017-04-18 18:45:28 +00:00
.links {
2016-12-05 02:34:33 +00:00
display: -moz-box;
display: -webkit-box;
width: 100%;
}
.linksbox {
-webkit-box-shadow: 1px 1px 20px 0px #000;
-moz-box-shadow: 1px 1px 20px 0px #000;
box-shadow: 1px 1px 20px 0px #000;
-moz-box-flex: 1;
-webkit-box-flex: 1;
margin: 4px;
2017-04-18 18:45:28 +00:00
padding: 12px;
background-color: #191919;
border: 1px solid #706f6e;
2016-12-05 02:34:33 +00:00
}
.linksbox h3 {
padding-bottom: 5px;
}
.linksbox a{
display: block;
text-decoration: none;
font-weight: bold;
}
.linksbox a.cyan:hover {
2017-04-18 18:45:28 +00:00
color: #729FCF;
2016-12-05 02:34:33 +00:00
text-decoration: underline;
}
.linksbox a.red:hover {
2017-04-18 18:45:28 +00:00
color: #FF5555;
2016-12-05 02:34:33 +00:00
text-decoration: underline;
}
.cyan {
2017-04-18 18:45:28 +00:00
color: #729FCF;
2016-12-05 02:34:33 +00:00
padding: 0;
}
.blue {
font-weight: bold;
2017-04-18 18:45:28 +00:00
color: #54ffff;
2016-12-05 02:34:33 +00:00
padding: 0;
}
2017-04-18 18:45:28 +00:00
.lime {
2016-12-05 02:34:33 +00:00
padding: 0;
2017-04-18 18:45:28 +00:00
color: #00ff00;
2016-12-05 02:34:33 +00:00
}
.red {
padding: 0;
2017-04-18 18:45:28 +00:00
color: #FF5555;
2016-12-05 02:34:33 +00:00
}