silicon-linux/style.css

124 lines
1.7 KiB
CSS
Raw Normal View History

2018-11-03 17:24:32 -04:00
@media screen and (max-width: 600px) {
2018-11-03 17:25:22 -04:00
.nav a:not(:first-child) {display: none;}
.nav a.icon {
2018-11-03 17:24:32 -04:00
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
2018-11-03 17:25:22 -04:00
.nav.responsive {position: relative;}
.nav.responsive a.icon {
2018-11-03 17:24:32 -04:00
position: absolute;
right: 0;
top: 0;
}
2018-11-03 17:25:22 -04:00
.nav.responsive a {
2018-11-03 17:24:32 -04:00
float: none;
display: block;
text-align: left;
}
}
2018-10-18 22:42:47 -04:00
body{
2018-10-18 22:46:10 -04:00
font-family: 'Roboto', sans-serif;
2018-10-18 22:42:47 -04:00
background: #333;
color: white
}
2018-10-19 15:37:29 -04:00
a {
color: white;
}
.iframe {
display: block;
}
.subtitle {
font-size: 40px;
text-align: center;
}
.answer {
font-style: italic;
padding: 0;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: white;
text-align: center;
}
2018-10-19 08:33:22 -04:00
.title{
font-size: 50px;
text-align: center;
}
#title{
border: solid white 5px;
}
#navigation{
padding-top: 0px;
padding-left: 0px;
padding-right: 0px;
padding-bottom: 15px;
margin: -1px;
}
ul.navbar {
2018-10-19 08:33:22 -04:00
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: whitesmoke;
}
li.list-blog{
text-decoration: none;
display: block;
}
2018-10-19 08:33:22 -04:00
li.logo{
font-weight: bold;
color: black;
}
li.nav {
float: left;
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
a.nav{
color: black;
text-decoration: none;
}
li a:hover {
background-color: gray;
}
.active {
2018-10-19 10:56:17 -04:00
background-color: #1f8e42;
2018-10-19 08:33:22 -04:00
color: black;
}
.center {
text-align: center;
2018-10-19 15:37:29 -04:00
}
2018-10-28 13:59:11 -04:00
.Question {
2018-10-19 15:37:29 -04:00
padding: 0;
2018-10-28 13:59:11 -04:00
}
2018-11-03 17:00:17 -04:00
2018-11-03 17:25:22 -04:00
.nav .icon {
2018-11-03 17:00:17 -04:00
display: none;
2018-11-03 17:17:20 -04:00
}
2018-11-03 17:00:17 -04:00
2018-11-03 17:24:32 -04:00