-
Notifications
You must be signed in to change notification settings - Fork 0
/
dest.css
52 lines (52 loc) · 957 Bytes
/
dest.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
* {
margin: 0px;
padding: 5px;
}
.hd {
height: 100vh;
}
.navbar-style {
background-color: oldlace;
box-shadow: 0 5px 10px #efefef;
}
.logo {
height: 65px;
padding: 0px 10px;
}
.icon-bar {
background: rgb(3, 180, 33);
}
li a {
color: black;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
li a:hover {
color: rgb(3, 180, 33);
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
width: 100%;
border-radius: 5px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
img {
border-radius: 5px 5px 0 0;
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
}
.container {
padding: 2px 16px;
}
.cdest {
font-size: 25px;
color: rgb(3, 180, 33);
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
text-align: center;
}