-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial05-sample.html
126 lines (105 loc) · 3.25 KB
/
tutorial05-sample.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Complex flexbox example</title>
<style>
html {
font-family: sans-serif;
}
body {
margin: 0;
}
header {
background: purple;
height: 100px;
}
h1 {
text-align: center;
color: white;
line-height: 100px;
margin: 0;
}
article {
padding: 10px;
margin: 10px;
background: aqua;
}
/* Add your flexbox CSS below here */
section {
display: flex;
}
article {
flex: 1 200px;
}
article:nth-of-type(3) {
flex: 3 200px;
display: flex;
flex-flow: column;
}
article:nth-of-type(3) div:first-child {
flex: 1 100px;
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-around;
}
.article1 {
background-image: url("http://www.catsvscancer.org/wp-content/uploads/2015/04/Taco-Cat-Spelled-Backwards-Is-Taco-Cat.-e1430184838220.jpg");
background-size: cover;
color: white;
border-style: solid;
border-color: green;
border-width: 5px;
}
button {
flex: 1;
margin: 5px;
font-size: 18px;
line-height: 1.5;
}
new_button {
flex: 1;
margin: 5px;
font-size: 18px;
line-height: 1.5;
background-color: #008CBA; /* Blue */
border: #555555;
color: white;
text-align: center;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Complex flexbox example</h1>
</header>
<section>
<article class="article1">
<h2>Taco cat</h2>
<p>This is a taco cat. Tacocat is a palindrome.</p>
</article>
<article>
<h2>Tacos</h2>
<p>Tacos are delicious. Gir knows.
<iframe width="420" height="315" src"https://www.youtube.com/watch?v=OIAaFPXdQA8"></iframe></p>
</article>
<article>
<div>
<new_button action="location.href=https://www.askideas.com/media/14/Smile-Wallpaper.jpg">Smile</new_button>
<button onclick="location.href=https://www.askideas.com/media/14/Smile-Wallpaper.jpg">Laugh</button>
<new_button>Wink</new_button>
<button>Shrug</button>
<new_button>Blush</new_button>
</div>
<div>
<p>Tacos actually microdosing, pour-over semiotics banjo chicharrones retro fanny pack portland everyday carry vinyl typewriter. Tacos PBR&B pork belly, everyday carry ennui pickled sriracha normcore hashtag polaroid single-origin coffee cold-pressed. PBR&B tattooed trust fund twee, leggings salvia iPhone photo booth health goth gastropub hammock.</p>
</div>
<div>
<p>Cray food truck brunch, XOXO +1 keffiyeh pickled chambray waistcoat ennui. Organic small batch paleo 8-bit. Intelligentsia umami wayfarers pickled, asymmetrical kombucha letterpress kitsch leggings cold-pressed squid chartreuse put a bird on it. Listicle pickled man bun cornhole heirloom art party.</p>
</div>
</article>
</section>
</body>
</html>