-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (47 loc) · 883 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
*{
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
}
html{
scroll-behavior: smooth;
}
#heading{
font-size: 100px;
}
.headings{
font-family: 'Qahiri', sans-serif;
font-weight: 400;
}
.center-items{
transform: translateY(50%);
}
.white-box{
max-width: 300px;
padding: 15px;
border: 10px solid #f2a5a5;
border-radius: 10px;
}
.white-box:hover{
box-shadow: 14px 20px #873232;
}
.scroll-mouse{
position: fixed;
bottom: 10%;
left: 47%;
background-color: white;
border: 5px solid white;
border-radius: 10px;
box-shadow: 5px 5px #b9b7b7;
animation-name: mouse;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
}
@keyframes mouse {
0%{
transform: translateY(0px);
}
100%{
transform: translateY(50px);
}
}