summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/recipe-card/recipe-card.component.css
blob: d52f971daf8c854758631735debcc824f6d15800 (plain)
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
p {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h1 {
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
h2 
{
font-family:'Times New Roman', Times, serif;
}
button{
  background-color: #D87620;
  color: white;
  padding : 15px 25px;
  cursor: pointer;
}
#container{
  width:100%;
  }
#left{
  float:left;width:100px;
  }
#right{
  float:right;width:175px;
  }
#center{
  margin:0 auto;width:100px;
  }
.example-card {
  max-width: 400px;
  float: left;
  width:25%;
  padding: 0px 35px;
}
.example-header-image {
  background-image: url('https://material.angular.io/assets/img/examples/shiba1.jpg');
  background-size: cover;
}
#like-rating {
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 1000px;
  background-size: contain;
}
#like-rating img{
  width:100%;
}
#rating {
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 1000px;
}
#rating img {
  width:100%;
}
#edit {
  padding: 10px;
}
.edit:hover{
  border:solid;
}
#cart {
  padding: 10px;
}
#delete {
  padding: 10px;
}
#previous {
  float:left;
}
.example-card:hover {
  border: solid;
}
#card-title {
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
}