-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (56 loc) · 1.07 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
56
57
58
59
60
61
62
63
64
65
66
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Josefin Sans', sans-serif;
}
.hero {
height: 100vh;
width: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),url("https://images.unsplash.com/photo-1600510724231-7933de502af4?crop=entropy&cs=tinysrgb&fm=jpg&ixid=MnwzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2Njg2Mzk2MTk&ixlib=rb-4.0.3&q=80");
background-size: cover;
backgruond-position: center;
}
nav{
display: flex;
justify-content: space-between;
align-content:center;
padding: 20px;
}
.logo{
color: white;
font-size: 28px;
}
span{
color: #ea1538;
}
nav ul li{
list-style-type: none;
display: inline-block;
padding: 10px 20px
}
nav ul li a{
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover{
color: #ea1538;
transition: .3s;
}
button{
border:none;
background: #ea1538;
padding: 12px 30px;
border-radius: 30px;
color: white;
font-weight: bold;
font-size: 15px;
transition: .3s;
}
button:hover{
transform: scale(1.3);
}
article{
color: white;
}