-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.scss
52 lines (47 loc) · 1.13 KB
/
home.scss
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
// header home page 📌
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@500&family=Lemon&display=swap');
.image-hero-dava {
background-image: url("../../al-quran/my-logo/al-quran.jpg");
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100vh;
.judul-home {
h1 {
font-family: 'Lemon', cursive;
font-size:calc(3vw + 2vh);
font-style: oblique;
}
}
.ayat-hadist {
font-family: 'Lemon', cursive;
font-weight: bold;
font-size: calc(2vw + 3vh);
}
.arti-hadist {
font-size: calc(1vw + 2vh);
}
}
.button {
color: #ecf0f1;
font-size: 17px;
background-color: #212121;
border: 1px solid #ffffff;
border-radius: 5px;
padding: 10px;
box-shadow: 0px 6px 0px #787878;
transition: all 50ms;
width: 340px;
}
@media(max-width: 330px) {
.button {
width: 200px;
}
}
.button:active {
box-shadow: 0px 2px 0px #787878;
position: relative;
top: 2px;
}