mat.services/css/style.css

82 lines
1.1 KiB
CSS
Raw Normal View History

2016-04-11 01:46:13 +00:00
.title, .text {
2016-06-14 02:07:57 +00:00
font-family: 'Raleway', sans-serif;
}
.title {
font-weight: 600;
display: inline-block;
float: left;
margin: 0;
}
.text {
font-weight: 300;
}
#content {
2016-04-11 01:46:13 +00:00
text-align: center;
2016-06-14 02:07:57 +00:00
font-size: 14pt;
2016-04-11 01:46:13 +00:00
}
2016-06-14 02:07:57 +00:00
body {
background-color: #f1f1f1;
}
2016-04-11 04:22:39 +00:00
nav {
2016-06-14 02:07:57 +00:00
padding: 50;
padding-bottom: 100;
font-size: 14pt;
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: inline-block;
float: right;
}
li a {
padding-left: 20;
color: black;
text-decoration: none;
2016-04-11 04:22:39 +00:00
}
2016-06-14 02:07:57 +00:00
li a:hover {
color: #e08283;
-o-transition:.2s;
-ms-transition:.2s;
-moz-transition:.2s;
-webkit-transition:.2s;
transition:.2s;
}
2016-06-14 02:07:57 +00:00
li a.active {
color: #e08283;
2016-04-11 04:22:39 +00:00
}
2016-06-14 02:07:57 +00:00
@media (min-width: 1000px) {
body {
margin-left: 200px;
margin-right: 200px;
}
li {
display: inline;
}
2016-06-14 02:21:52 +00:00
nav {
font-size: 20pt;
}
2016-06-14 02:07:57 +00:00
}
@media (max-width: 1000px) and (min-width: 340px) {
body {
margin-left: 20px;
margin-right: 20px;
}
li {
margin-top: 2px;
}
2016-04-11 01:46:13 +00:00
}