-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (95 loc) · 1.73 KB
/
style.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
105
106
107
108
109
110
111
*{
margin : 0px;
padding : 0px;
box-sizing: border-box;
}
body {
background-color: rgba(188, 240, 234, 0.986);
}
h1 {
text-align: center;
padding : 10px;
text-decoration: underline rgba(69, 151, 62, 0.753) 4px double;
}
nav{
height : 30px;
width : 100vw;
background-color: aliceblue;
font-size: 1.3rem;
}
nav a{
padding : 10px;
text-decoration: none;
color : black;
padding : 10px;
margin-top : 3px;
}
/* indian-recipes */
h2{
text-align : center;
padding-bottom: 10px;
}
.center{
display : block;
margin-left : auto;
margin-right : auto;
width : 50%;
margin-bottom : 30px;
margin-top : 10px;
}
hr{
height : 10px;
background-image: linear-gradient(to right, red , yellow);
}
/* recipe items */
.recipe-item {
height : auto;
width : auto;
}
.header {
font-size: 20px;
height : 30px;
/* width : 0%; */
display : flex;
margin-top: 10px;
margin-bottom : 10px;
/* border : 2px solid red; */
}
.index {
margin : 5px;
padding : 3px;
border-right : 1px solid black;
align-self: center;
}
.title {
margin : 5px;
align-self: center;
}
.recipe-img {
height : 15rem;
width : 30rem;
}
.btn {
cursor : pointer;
height : 20px;
width : 11rem;
background-color: rgb(255, 115, 0);
color: white;
font-weight: 700;
text-transform: uppercase;
padding : 22px;
margin : 20px;
letter-spacing: .10rem;
margin-left : 120px;
padding-top: 10px;
}
.btn a {
text-decoration: none;
color : white;
text-align: center;
}
.btn a:hover {
color : gray;
/* background-color: rgb(219, 101, 22); */
transition :cubic-bezier(1, 0, 0, 1)
}