-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
183 lines (177 loc) · 3.53 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
*{
box-sizing: border-box;
}
html{
background: #eee;
}
body{
background: #fff;
margin: 0 auto;
max-width: 24em;
}
/*
HEADER
met grote titel
en zoek icoon
*/
body > header{
position: relative;
background: gold;
margin: 0;
margin-top: -13rem;
padding: 1rem;
transition: margin 0.3s cubic-bezier(.66,1.66,.72,1.03);
/* cubic bezier tool http://cubic-bezier.com */
}
body > header h1{
margin: 4rem 0 3rem 0;
font-family: roboto, helvetica, arial, sans-serif;
font-weight: bold;
letter-spacing: -0.1em;
font-size: 6.3em;
line-height: 80%;
}
/* zoek button vergrootglas & sluit icoon */
body > header > button{
outline: none;
position: absolute;
top: 15rem;
right: 0.2rem;
width: 5rem;
margin: 0;
padding: 0;
border: 0;
background: none;
background-image: url('https://koopreynders.github.io/frontendvoordesigners/img/search.svg');
background-size: 3rem;
background-repeat: no-repeat;
background-position: top;
height: 5rem;
font-family: roboto, helvetica, arial, sans-serif;
font-size: 0.8em;
padding-top: 3rem;
cursor:pointer;
transition: all 0.3s;
}
.close{
background-image: url('https://koopreynders.github.io/frontendvoordesigners/img/close.svg');
font-size: 0em;
}
body > header > button img{
width: 3rem;
margin-bottom: 0.4rem;
}
body > header > button:hover{
transform: scale(1.1);
}
/*
MICRO INTERACTIE
deze class wordt aangeroepen als op de button wordt geklikt
*/
body > header.show-search{
margin-top: 0;
/* background: Goldenrod; */
}
body > header.show-search span {
top: -2.6rem;
transition: top 0.35s 0.4s cubic-bezier(.66,1.66,.72,1.03);
}
/*
ZOEK FORM
Staat eerst buiten beeld
na klik schuift het naar beneden
Dit is de micro interactie
*/
header > form{
margin: -1rem;
padding: 4rem 1rem 2rem 1rem;
text-align: center;
background: Goldenrod;
}
header > form fieldset{
border: 0;
margin: 0;
padding: 0;
font-family: roboto, helvetica, arial, sans-serif;
font-weight: bold;
font-size: 2em;
color: #8a6914;
}
header > form fieldset div{
display: flex;
flex-direction: column;
align-items: center;
}
header > form input[type="search"]{
display: block;
margin: 1rem 0;
padding: 0.6rem;
width: 16em;
font-family: sans-serif;
font-size: 1.4rem;
text-align:center;
border: solid 0.4rem DarkGoldenrod;
transition: border 0.3s;
}
header > form input[type="search"]:focus{
border: solid 0.4em black;
border-radius: 1rem;
}
header > form label{
position: absolute;
left: -666rem;
}
header > form button{
position: absolute;
left: -666rem;
}
header > form legend{
position: relative;
}
header > form legend > span{
position: absolute;
top: -8rem;
left: 43%;
transform: rotate(10deg);
font-weight: normal;
font-size: 0.8em;
background: gold;
color: black;
padding: 0.2rem 0.8rem 0.8rem 0.8rem;
clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 57% 80%, 45% 100%, 31% 80%, 0 80%);
/* maak je eigen clippy: http://bennettfeely.com/clippy */
}
/*
MAIN
content met de verhalen
*/
main{
margin: 0;
padding: 1rem;
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
main h2{
width: 20rem;
margin: 1rem 0;
font-family: roboto, helvetica, arial, sans-serif;
font-weight: bold;
font-size: 1.4em;
}
main figure{
/background: pink;
/width:calc(50% - 2rem);
/margin: 1rem;
overflow: hidden;
}
main figure img{
width:calc(50% - 2rem);
/height: 10em;
margin: 0;
padding: 0;
/background: LightGoldenrodYellow;
border-radius: 0.2em;
border: 0.2em black solid;
box-shadow: 3px 3px 6px 3px #ccc;
}