-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (160 loc) · 3.61 KB
/
index.html
File metadata and controls
165 lines (160 loc) · 3.61 KB
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
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<title>Web 1</title>
</head>
<body>
<h1>
Yukiko's Web 1 Assignments
</h1>
<div class="simple-nav">
<a href="setup.html">Setup and Turn in Instructions</a> ·
<a href="http://web1.yukikodesign.com">Web 1 Home</a>
</div>
<a href="assignment-1/">
A1: Simple Mockups
</a> ·
<a href="instructions/assignment-1/">
instructions
</a>
<br>
<a href="assignment-2/">
A2: Simple HTML
</a> ·
<a href="instructions/assignment-2/">
instructions
</a>
<br>
<a href="assignment-3/">
A3: Style About Me
</a> ·
<a href="instructions/assignment-3/">
instructions
</a>
<br>
<a href="assignment-4/">
A4: Update Mockups and style
</a> ·
<a href="instructions/assignment-4/">
instructions
</a>
<br>
<a href="assignment-5/">
A5: Navigation and Cards
</a> ·
<a href="instructions/assignment-5/">
instructions
</a>
<br>
<a href="assignment-6/">
A6: Hero, embeddables and transitions
</a> ·
<a href="instructions/assignment-6/">
instructions
</a>
<br>
<a href="assignment-7/">
A7: Tutorial Pitch
</a> ·
<a href="instructions/assignment-7/">
instructions
</a>
<br>
<a href="assignment-8/">
A8: Color Mocks in 3 ways
</a> ·
<a href="instructions/assignment-8/">
instructions
</a>
<br>
<a href="assignment-9/">
A9: Apply style throughout site
</a> ·
<a href="instructions/assignment-9/">
instructions
</a>
<br>
<a href="assignment-10/">
A10: Prototype and CSS Layout
</a> ·
<a href="instructions/assignment-10/">
instructions
</a>
<br>
<a href="assignment-11/">
A11: Styled Home, to do list
</a> ·
<a href="instructions/assignment-11/">
instructions
</a>
<br>
<a href="assignment-12/">
A12: Refine Content and style
</a> ·
<a href="instructions/assignment-12/">
instructions
</a>
<br>
<a href="assignment-13/">
A13: Case Study
</a> ·
<a href="instructions/assignment-13/">
instructions
</a>
<br>
<a href="final/">
Final: Tutorial site
</a> ·
<a href="final/yukiko-final.zip">
Final: Zipped files
</a> ·
<a href="instructions/final/">
instructions
</a>
</body>
<style type="text/css">
body {
background-color: #efefef;
margin: 0 0 80px 0;
text-align: center;
font-family: arial, sans-serif;
}
h1 {
margin: 100px auto 20px auto;
max-width: 600px;
display: block;
color: #333;
}
a {
color: #3399cc;
font-size: 20px;
margin: 0.5em;
display: inline-block;
text-decoration: none;
transition: all 0.1s ease;
}
a:hover {
color: #4568ea;
text-decoration: underline;
}
@keyframes dance {
0% { transform: rotate(0deg); }
50% { transform: rotate(0deg); }
52% { transform: rotate(3deg); }
54% { transform: rotate(-3deg); }
56% { transform: rotate(3deg); }
58% { transform: rotate(-3deg); }
60% { transform: rotate(3deg); }
62% { transform: rotate(0deg); }
100%{ transform: rotate(0deg); }
}
h1 {
animation: dance 15s 0s infinite ease;
}
.simple-nav {
border-bottom: 2px dotted #bbb;
max-width: 600px;
margin: 20px auto;
}
</style>
</html>