-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
104 lines (101 loc) · 1.53 KB
/
main.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.header{
display: flex;
justify-content: space-between;
border: 1px solid black;
}
.logo{
width: 8rem;
}
.nav-items{
padding: 0 15px;
}
.nav-items >ul{
display: flex;
font-size: 20px;
list-style: none;
}
.nav-items > ul >li{
padding: 1rem;
}
.search{
padding:1rem;
}
.res-card{
padding: 5px;
width: 220px;
height: 500px;
margin:5px;
transition: 2s cursor border ;
}
.res-card:hover{
cursor: pointer;
border:1px solid black;
}
.res-logo{
width: 100%;
max-height:220px;
}
.res-container{
display:flex;
flex-wrap:wrap;
}
.filter{
margin: 15px 0px;
display: flex;
}
.filter-btn{
padding: 0px 10px;
margin: 15px;
cursor: pointer;
}
.shimmer-card{
margin: 20px;
width: 200px;
height: 400px;
background-color: #f0f0f0;
}
.shimmer-container{
display: flex;
flex-wrap: wrap;
}
.login{
padding: 0px 20px;
cursor: pointer;
}
.error{
background-color: rgb(133, 133, 133);
display: flex;
align-items: center;
justify-content: center;
}
.error_img{
z-index: 2;
height: 100vh;
}
.vert_error{
z-index: 0;
left: 150px;
font-weight: bolder;
position: relative;
display: flex;
color: white;
flex-direction: column;
font-size: 70px;
}
.errorMsg{
z-index: 3;
position:absolute;
bottom: 0px;
left: 1vw;
}
a{
text-decoration: none;
color: black;
transition: .1s color;
}
.header a:hover{
color: aquamarine;
}
.res-container a:hover{
color: rgb(3, 73, 31);
}