-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (92 loc) · 1.46 KB
/
styles.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
html{
font-family: sans-serif;
}
h1,h2,h3,h4,h5,h6{
font-weight: 300;
}
.item img:hover{
transform: scale(1.05);
transition: all ease ;
border-radius: 15px;
box-shadow: 0 0 5px rgb(241, 166, 52);
}
.heading{
font-size: 70px;
font-family: 'sans-serif', cursive;
}
a{
text-decoration:none;
}
#logo{
width: 100px;
height:100px;
margin-left: auto;
margin-right: auto;
display: block;
}
.heading,
.recipe-title{
text-align: center;
}
h3{
font-weight: bold;
}
.content{
display:flex;
flex-direction: row;
justify-content: center;
font-size: 20px;
gap:20px;
}
div img{
width:350px;
height:500px;
}
.item{
display: flex;
flex-direction: column;
gap:10px;
align-items:center;
width:400px;
text-align: center;
}
.left{
display: flex;
flex-direction: column;
gap:20px;
padding-left: 30px;
width:420px;
height: 1507px;
}
.left img{
border-radius: 10px;
}
.content{
gap:40px;
display: flex;
}
.right-top{
border-radius: 10px;
border:1px solid rgb(241, 166, 52);
height:500px;
}
ul{
list-style-type: none;
padding:0;
}
.instructions{
margin-top:20px;
border-radius: 10px;
border:1px solid rgb(71, 71, 71);
height: 987px;
}
.instructions{
border-radius: 10px;
background-color: rgb(240, 236, 230);
padding:20px;
flex-grow: 3;
}
.right-top,
.instructions{
padding:0 20px 0px 20px;
}