OSDN Git Service

init project
[bytom/Bytom-Dapp-Demo.git] / src / styles / App.css
1 html {
2     box-sizing: border-box;
3 }
4
5 *, *::before, *::after {
6     box-sizing: inherit;
7     padding: 0;
8     margin: 0;
9 }
10
11 .app {
12     width: 960px;
13     margin: 0 auto;
14     padding: 20px;
15 }
16
17 nav ul {
18     list-style: none;
19     display: flex;
20     background-color: black;
21     margin-bottom: 20px;
22 }
23
24 nav ul li {
25     padding: 20px;
26 }
27
28 nav ul li a {
29     color: white;
30     text-decoration: none;
31 }
32
33 .current {
34     border-bottom: 4px solid white;
35 }
36
37 h1 {
38     margin-bottom: 20px;
39 }
40
41 p {
42     margin-bottom: 15px;
43 }