-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (51 loc) · 1.03 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
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
.navbar{
}
#Home{
height:100vh;
background: linear-gradient(#00000041,#00000042),url(https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mjh8fG5hdHVyYWx8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=500&q=60);
background-size:cover;
background-repeat: no-repeat;
display:flex;
align-items:center;
}
.button{
font-family: Arial;
border:0;
padding: 14px 38px;
}
.button-brand{
color:white;
font-weight: 500;
border-color:#0095cf;
background-color:#0095cf;
}
.button-brand:hover{
border-color:#0345c0;
background-color: #0345c0;
color:white;
}
.social-icons{
list-style: none;
}
.social-container{
position:absolute;
right:40px;
bottom:20%;
}
.social-icons li{
margin:35px 0;
}
.social-icons li i{
color:white;
font-size: 50px;
}
.social-icons li a:hover i{
transform: scale(1.5);
color: rgb(38, 119, 241);
transition: all .2s ease-in-out;
}