-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
90 lines (74 loc) · 1.48 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
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
*{
margin: 0px;
padding: 0px;
background-color: rgb(51, 51, 51);
}
.heading_style{
margin-top: 0;
padding: 20px 20px;
background-color:black;
color:blue;
box-shadow: 0px 10px 15px -3px blue;
text-align: center;
font-weight: bold;
font-style: oblique;
font-family: 'Montserrat', sans-serif;
margin-bottom: 50px;
}
.cards{
width:18vw;
margin:30px 100px;
display:inline-block;
align-items: center;
justify-content: center;
}
.card{
margin: 20px;
width: 100%;
height:100%;
border-radius: 5px;
box-shadow: 2px 2px 10px rgb(43, 44, 44);
box-shadow: 0px 15px 9px -4px black;
}
.card:hover{
transition: .5s all ease-in-out;
transform: scale(1.02);
box-shadow: 0px 30px 18px -8px black;
}
img{
width:100%;
height:30vh;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.card_info{
font-size: 20px;
font-style: italic;
text-align: center;
background-color: white;
}
h3{
text-align: center;
margin-top: 10px;
font-size: 20px;
font-weight: bold;
background-color: white;
}
button{
padding: 5px;
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid black;
border-radius: 5px;
cursor: pointer;
background-color: white;
}
button:hover{
background-color: black;
color: white;
transition: 0.5s;
}
.card_category
{
background-color: white;
}