WME/css/main.css

97 lines
1.5 KiB
CSS
Raw Normal View History

2018-10-17 16:20:59 +00:00
/* Add a black background color to the top navigation */
2018-10-27 15:06:51 +00:00
.topnav {
background-image: linear-gradient(grey, lightgrey);
2018-10-17 16:20:59 +00:00
overflow: hidden;
2018-10-28 15:35:09 +00:00
}
.topnav ul {
background-color: greenyellow;
}
.topnav li {
display: inline-block;
align-content: center;
2018-10-17 16:20:59 +00:00
}
/* Style the links inside the navigation bar */
2018-10-22 08:45:14 +00:00
.topnav a {
2018-10-28 15:35:09 +00:00
/*text-align: center;
2018-10-17 16:20:59 +00:00
padding: 14px 16px;
text-decoration: none;
2018-10-28 15:35:09 +00:00
font-size: 17px;*/
2018-10-17 16:20:59 +00:00
}
2018-10-28 15:35:09 +00:00
/*!* Change the color of links on hover *!
2018-10-22 08:45:14 +00:00
.topnav a:hover {
2018-10-17 16:20:59 +00:00
background-color: #ddd;
color: black;
}
2018-10-28 15:35:09 +00:00
!* Add a color to the active/current link *!
2018-10-22 08:45:14 +00:00
.topnav a.active {
2018-10-17 16:20:59 +00:00
background-color: #4CAF50;
color: white;
2018-10-28 15:35:09 +00:00
}*/
h1 {
font-weight: bold;
font-family: 'Roboto', sans-serif;
}
.text {
font-family: 'Roboto', sans-serif;
font-size: 14px;
line-height: 145%;
font-style: normal;
border: 5px solid grey;
border-top-color: green;
border-radius: 3px;
column-count: 3;
2018-10-21 16:03:11 +00:00
}
table#t01 {
width: 100%;
2018-10-24 08:14:16 +00:00
background-color: white;
2018-10-27 15:06:51 +00:00
text-align: left;
margin: 2em;
vertical-align: middle;
}
table#t01 tr:nth-child(even) {
2018-10-27 15:06:51 +00:00
background-color: white;
height: 2em;
vertical-align: middle;
}
2018-10-24 08:00:00 +00:00
table#t01 tr:nth-child(odd) {
2018-10-27 15:06:51 +00:00
background-color: lightgrey;
height: 2em;
}
2018-10-24 08:00:00 +00:00
table#t01 th {
padding: 15px;
2018-10-27 15:06:51 +00:00
background-color: white;
2018-10-24 08:00:00 +00:00
}
.boxed {
border: 1px solid green;
width: 80%;
box-align: center;
text-align: center;
2018-10-27 15:06:51 +00:00
}
th {
text-align: left;
border-bottom: 3px solid lightgrey;
2018-10-17 16:20:59 +00:00
}