-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (60 loc) · 996 Bytes
/
style.css
File metadata and controls
73 lines (60 loc) · 996 Bytes
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
body {
font-family: 'Nunito', 'Open Sans', sans-serif;
}
h1,
h2,
p,
a {
text-align: center;
}
p {
color: #444;
}
h1 {
margin-top: 100px;
font-size: 7em;
margin-bottom: 0px;
}
h2 {
margin-top: 0px;
font-size: 3em;
}
.long {
margin-left: 10px;
margin-right: 10px;
}
img {
margin-top: 20px;
border-radius: 10%;
width: 80%;
margin-left: auto;
margin-right: auto;
cursor: pointer;
}
.force-square-image {
aspect-ratio: 1;
}
#project-container {
margin-right: 30px;
margin-left: 30px;
margin-top: 50px;
margin-bottom: 60px;
display: grid;
/*grid-template-columns: repeat(auto-fit, 107px);*/
grid-template-columns: repeat(auto-fit, minmax(300px, 30%));
grid-column-gap: 40px;
grid-row-gap: 40px;
justify-content: center;
}
.project {
/*border: solid 1.5px lightgrey;*/
box-shadow: grey 0px 0px 4px 0px;
/* border-radius: 12%; */
border-radius: 67.2px;
text-align: center;
transition: 0.6s;
transform: scale(1);
}
.project:hover {
transform: scale(1.05);
}