-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmystyle.css
67 lines (66 loc) · 1.15 KB
/
mystyle.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
56
57
58
59
60
61
62
63
64
65
66
67
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color:rgb(238, 238, 238);
color: rgb(32, 32, 32);
}
h1{
font-family: 'Archivo Black', sans-serif;
font-size: 50px;
line-height: 85%;
letter-spacing: 50%;
margin: 15px;
}
h2{
font-family: 'Archivo Black', sans-serif;
margin: 15px;
font-size: 50px;
}
h3,h4{
font-family: 'Archivo', sans-serif;
margin: 15px;
font-size: 18px;
}
p{
font-family: 'Manrope', sans-serif;
font-size: 16px;
margin: 15px;
}
nav{
border-color: rgb(43, 43, 43);;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
border-bottom: solid;
}
.nav1{
list-style-type: none;
margin: 0;
padding: 5px;
}
.nav1 li{
display: inline-block;
padding: 10px;
line-height: 0;
vertical-align: center;
}
.nav1 li a{
color: rgb(42, 3, 218);
font-weight: 700;
text-decoration: none;
}
.nav1 li a:hover{
color: rgb(25, 0, 167);
font-weight: 700;
text-decoration: underline;
}
footer {
text-align: center;
font-size: 12px;
padding: 15px;
border-top: solid;
}