-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.css
41 lines (39 loc) · 963 Bytes
/
homepage.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
body{
background-size: cover;
background-repeat: no-repeat;
background-image: url('https://wallpaperaccess.com/full/3518775.jpg');
margin: 0px;
padding: 0px;
height: 100vh;
justify-content: center;
align-items: center;
display: flex;
flex-direction: column;
}
.btn{
margin: 15px;
border-radius: 23px;
font-family:'Times New Roman', Times, serif;
font-size: 20px;
font-weight:bold;
background: #1E90FF;
height: 200px;
width: 200px;
padding: 20px;
text-align: center;
text-decoration: none;
color: #fff;
cursor: pointer;
box-shadow:0 0 10px rgba(0,0,0,0.1);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
.btn:hover, .btn:focus, .btn:active{
background-color: red;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
-webkit-transform: scale(1.1);
}
.link{
color: white;
text-decoration: none;
}