blob: 029d7e6b56840d75031933854ae441e638c328c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Desktop Layout */
@media only screen and (min-width: 800px) {
nav {
flex-direction: row-reverse;
margin: 0;
padding: 0;
}
div.buttons {
flex-direction: row-reverse;
}
.banner {
text-align: right;
background: linear-gradient(
to right,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 50%
);
}
}
|