-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
107 lines (91 loc) · 1.49 KB
/
global.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
body {
max-width: 800px;
margin: auto;
font-family: 'Archivo', sans-serif;
font-size: 18px;
padding: 1em;
}
.header {
padding: 10px;
/*background: rgb(222, 222, 255);*/
margin-bottom: 1em;
}
.content {
margin: 10px 10px;
}
.project {
padding: 10px 20px 20px;
background: #f7f4f1;
border-radius: 5px;
}
.navigation {
display: flex;
background: #f7f4f1;
padding: 7px;
border-radius: 5px;
}
.nav-button {
flex: auto;
text-align: center;
text-decoration: none;
font-weight: bold;
color: black;
}
.video{
border-radius: 3px;
margin: 3px;
text-align: center;
overflow:hidden;
padding-bottom:56.25%;
position:relative;
height:0;
}
.video iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
.description {
margin: 1em 0.5em;
}
.images {
display: flex;
flex-wrap: wrap;
padding: 5px;
justify-content: space-evenly;
}
.proj-image {
width: 600;
height: 400;
border-radius: 3px;
}
.responsive {
float: left;
width: 24.99999%;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 49.99999%;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
}
div.gallery {
margin: 3px;
}
div.gallery:hover {
}
div.gallery img {
width: 100%;
height: auto;
}
.clearfix:after {
content: "";
display: table;
clear: both;
}