-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.css
85 lines (73 loc) · 1.2 KB
/
site.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
header{
background-color: #05F2AF;
color:black;
text-align: center;
padding: 10px;
font-family: 'Raleway', sans-serif;
}
header a{
color:black;
padding: 10px;
}
footer {
background-color: #05F2AF;
color:black;
position: absolute;
font-family: 'Raleway', sans-serif;
margin-bottom: -50px;
width: 100%;
}
footer a{
color:black;
}
li{
list-style: none;
}
#container {
position: relative;
min-height: 100vh;
}
#selfie{
padding:1em;
}
.content {
font-family: 'Raleway', sans-serif;
padding-bottom: 1rem;
min-height:100vh; /* Footer height */
}
.box{
justify-content:center;
display:block;
margin:auto;
}
.depth{
width:35vw;
height:auto;
justify-content:center;
display:block;
margin:auto;
}
.grid-container{
display: grid;
grid-template-columns: auto auto;
}
.grid-item{
padding:5vw;
}
.images{
width:35rem;
height:auto;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 600px) {
.depth {
width:60vw;
}
.grid-container{
grid-template-columns: auto;
}
.images{
width:50vw;
height:auto;
}
}