-
Notifications
You must be signed in to change notification settings - Fork 0
/
nonvegcutting.html
156 lines (146 loc) · 3.95 KB
/
nonvegcutting.html
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Barlow Condensed" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CUTTING DIET</title>
<link rel="stylesheet" href="style.css">
</head>
<style>
*{
margin: 0;
padding:0;
box-sizing: border-box;
font-family: "Barlow Condensed";
}
body h1{
margin-top: 2%;
color: limegreen;
font-family: "Barlow Condensed";
font-size: 4rem;
}
body{
background: black;
}
#accordion{
margin: 100px auto;
width: 600px;
}
#accordion li
{
list-style: none;
width: 100%;
margin-bottom: 10px;
background: rgb(5, 220, 5);
padding: 10px;
color: white;
border-radius: 4px;
}
#accordion li label
{
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 25px;
font-weight: 700;
cursor: pointer;
color: white;
border-radius:4px;
}
#accordion li label span
{
transform: rotate(90deg);
font-size: 22px;
color: white;
}
#accordion label + input[type="radio"]
{
display: none;
}
#accordion .content
{
padding: 0 10px;
line-height: 26px;
font-size: 20px;
max-height: 0;
overflow: hidden;
transition: max-height 0.5s;
}
#accordion label +input[type="radio"]:checked + .content
{
max-height: 400px;
}
@media all and (max-width:600px)
{
body h1{
font-size: 3rem;
}
#accordion{
margin: 100px auto;
width: 325px;
}
}
</style>
<body>
<center><h1>Cutting Diet</h1></center>
<div>
<ul id="accordion">
<li>
<label for="first"> MEAL 1 <span>></span></label>
<input type="radio" name="accordion" id="first">
<div class="content">
<p>
• Half bowl of oats. You can dress up with strawberries/banana <br>
• 1 banana <br>
• Have at least 5 egg whites cooked with 1-2 portions of yolks <br>
</p>
</div>
</li>
<li>
<label for="second"> MEAL 2 <span>></span></label>
<input type="radio" name="accordion" id="second">
<div class="content">
<p>
• One portion of green vegetables/lettuce <br>
• 250 grams of chicken breast/grilled tofu <br>
</p>
</div>
</li>
<li>
<label for="third"> MEAL 3 <span>></span></label>
<input type="radio" name="accordion" id="third">
<div class="content">
<p>
• Chicken sandwich or wheat bread (2 slice) or one bowl of brown rice <br>
• Green salad/veggies <br>
• Half cup of kidney beans <br>
</p>
</div>
</li>
<li>
<label for="fourth"> MEAL 4 <span>></span></label>
<input type="radio" name="accordion" id="fourth">
<div class="content">
<p>
• You can have a pre-work out shake to fill yourself for workouts at this time. <br>
• Ingredients: <br>
1 cup of milk <br> 1 scoop whey protein <br> 1 banana <br> 2 teaspoons sugar <br> 1/2 cup ice
</p>
</div>
</li>
<li>
<label for="fifth"> MEAL 5 <span>></span></label>
<input type="radio" name="accordion" id="fifth">
<div class="content">
<p>
• 1 big bowl of salad <br>
• 2 piece fish <br>
</p>
</div>
</li>
</ul>
</div>
</body>
</html>