-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.css
49 lines (45 loc) · 920 Bytes
/
index.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
a.btn{
padding: 10px;
font-size: 1.25rem;
width: 40%;
transition: box-shadow 1s;
background-color: rgb(233, 115, 31);
border: none;
}
a.btn:hover{
box-shadow: 7px 7px 0px 0px black;
background-color: rgb(233, 100, 5);
}
a.btn::after{
content: '';
width: 0;
height: 2px;
display: block;
background-color: rgba(255, 255, 255, 0.942);
border-radius: 10px;
transition: all 1s;
}
a.btn:hover::after{
width: 100%;
}
.imdiv{
height: 92vh;
background: url(images/cafe.webp) center / cover;
background-color:rgb(0,0,0, .3);
background-blend-mode: darken;
}
.written{
max-width: 350px;
animation-name: fade-up;
animation-duration: 3s;
}
@keyframes fade-up {
0%{
opacity: 0;
transform: translateY(80px) scale(0.9);
}
100%{
opacity: 1;
transform: translateY(0px) scale(1);
}
}