-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
49 lines (42 loc) · 862 Bytes
/
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
nav {
display: flex;
justify-content: center;
align-items: center;
background-color: #d5fce7;
padding: 0.5rem 0rem;
}
nav h3{
color: darkgreen;
}
main {
max-width: 900px;
margin: auto;
padding: 0.5rem;
text-align: center;
}
.container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
grid-gap: 1.5rem;
justify-content: center;
align-items: center;
margin: auto;
padding: 1rem 0;
}
.card{
box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.064), 6px 6px 6px rgba(0, 0, 0, 0.23);
}
.card-img-top{
object-fit: cover !important;
height: 10rem;
user-select: none;
}
.ask-permission{
margin-top: 1.5rem;
background-color: #d5fce7;
border: 1px solid darkolivegreen;
color: darkgreen;
}
.ask-permission:active{
outline: none !important;
}