-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (52 loc) · 1.12 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
html,body{
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
padding: 0px;
}
header{
padding: 16px;
background-color: whitesmoke;
}
header nav{
background-color: snow;
border: 1px solid lightgrey;
border-radius: 8px;
padding: 16px;
display: flex;
justify-content: space-between;
}
header nav a{
text-decoration: none;
}
main{
padding: 16px;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
column-gap: 16px;
row-gap: 16px;
}
.notebook{
text-decoration: none;
color: white !important;
font-size: 1.5rem;
background-color: black;
border-radius: 8px;
}
.notebook>div{
height: 200px;
width: 200px;
padding: 8px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
header>*, main{
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 800px;
}