-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (48 loc) · 880 Bytes
/
Copy pathstyle.css
File metadata and controls
51 lines (48 loc) · 880 Bytes
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
*{
margin: 0;
padding: 0;
}
body{
background-image: linear-gradient(rgba(32, 99, 20, 0.3), rgba(62, 20, 20, .6)), url(bg.jpg);
background-size:cover;
position: relative;
height: 100vh;
text-align: center;
font-family: 'Saira', sans-serif;
color: #555;
}
h1{
padding: 50px;
font-size: 40px;
font-family: 'Hammersmith One', sans-serif;
text-transform: uppercase;
transition: font-size .5s;
}
a{
font-size: 25px;
text-decoration: none;
color: dimgray;
transition: color .5s;
}
a:hover{
color:gray;
}
a:hover i{
margin-right: 15px;
}
.wrapper {
width: 500px;
height: 500px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
border-radius: 50px;
box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
i{
margin-right:20px;
transition: margin-right .3s, transform 1s;
}