-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
65 lines (48 loc) · 1.16 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,300&family=Ubuntu:wght@300;400&display=swap');
body {
background-color: rgb(255, 255, 255);
font-family: 'Ubuntu', sans-serif !important;
font-family: 'Montserrat', sans-serif !important;
font-weight: 400;
font-size: 1rem;
line-height: 1.5;
color: #dfddddea;
}
.shimmer-container , .homecard{
transition: all 0.2s ease-in-out;
}
.link {
color: black;
text-decoration: none;
transition: all 0.2s ease-in-out;
}
.shimmer-card:hover , .homecard:hover {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(33, 33, 33, .2);
}
.list-group-item,.link:hover {
color: orangered;
text-decoration: none;
}
.list-group-item {
font-size: small;
font-family: sans-serif;
}
.shimmer-container {
display: flex;
flex-wrap: wrap;
margin-top: 180px;
}
.shimmer-card {
width: 320px;
height: 350px;
background-color: #dfddddea;
margin: 22px;
}
.homecard {
width: 320px;
height: 350px;
background-color: #dfddddea;
margin: 22px;
}