-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (52 loc) · 825 Bytes
/
styles.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
.flex-container{
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.logo{
display: flex;
justify-content: flex-start;
}
.navigate{
display: flex;
font-size: 15px;
}
.main{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width: 500px;
height: auto;
justify-content: space-around;
align-items:normal;
}
h1{
font-size: 45px;
font-weight: bold;
}
h2{
text-align: center;
font-size: 40px;
}
p{
font-size: 20px;
color: blueviolet;
}
button{
background-color: blueviolet;
color: white;
padding: 5px 20px;
text-align: center;
font-size: 20px;
border-radius: 10%;
}
#top{
background-color: navy;
}
a:link{
color:gray;
}
a:visited{
color: purple;
}
a:hover{
color: darkturquoise
}