Skip to content

Commit f4f2712

Browse files
authored
Create portfolio
1 parent 54cf77e commit f4f2712

1 file changed

Lines changed: 61 additions & 0 deletions

File tree

css/portfolio

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
2+
3+
.menu {}
4+
.menu-label {
5+
font-size: medium;
6+
}
7+
8+
.pure-img-responsive {
9+
max-width: 50%;
10+
height: auto;
11+
margin-left: auto;
12+
margin-right: auto;
13+
border-radius: 50%;
14+
}
15+
16+
#return_button {
17+
background: transparent;
18+
outline: none;
19+
border-style: none;
20+
padding-bottom: 1em;
21+
}
22+
23+
@media (max-width: 500px) {
24+
#spacer-vert {
25+
height: 28vh;
26+
}
27+
.logo {
28+
-webkit-animation:spin 6s linear infinite;
29+
-moz-animation:spin 6s linear infinite;
30+
animation:spin 6s linear infinite;
31+
}
32+
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
33+
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
34+
}
35+
36+
@media (min-width: 540px) and (max-width: 1024px) {
37+
.pure-u-1-2.pure-u-lg-1-3 {
38+
width: 33%;
39+
}
40+
.spacer-hor {
41+
height:40vh;
42+
}
43+
44+
}
45+
46+
@media (min-width: 1024px) and (max-width: 1180px){
47+
.spacer-hor {
48+
width: 100vw;
49+
height: 10vh;
50+
}
51+
52+
}
53+
54+
@media (min-width: 1180px) {
55+
.spacer-hor {
56+
width: 100vw;
57+
height: 3vh;
58+
}
59+
}
60+
61+

0 commit comments

Comments
 (0)