source: pages/Layout.css@ 8ee4553

main
Last change on this file since 8ee4553 was 8ee4553, checked in by Bati <no-reply@…>, 7 months ago

scaffold Vike app with Bati

  • Property mode set to 100644
File size: 404 bytes
Line 
1/* Links */
2a {
3 text-decoration: none;
4}
5#sidebar a {
6 padding: 2px 10px;
7 margin-left: -10px;
8}
9#sidebar a.is-active {
10 background-color: #eee;
11}
12
13/* Reset */
14body {
15 margin: 0;
16 font-family: sans-serif;
17}
18* {
19 box-sizing: border-box;
20}
21
22/* Page Transition Animation */
23#page-content {
24 opacity: 1;
25 transition: opacity 0.3s ease-in-out;
26}
27body.page-transition #page-content {
28 opacity: 0;
29}
Note: See TracBrowser for help on using the repository browser.