-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.css
81 lines (68 loc) · 1.18 KB
/
main.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
html {
text-align: center;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
color: #000;
}
a:visited, a:link, a:active {
text-decoration: none;
color: rgba(0, 0, 0, 0.6);
}
a:hover {
color: rgba(0, 0, 255, 0.8);
}
.highlight {
color: rgba(0, 0, 255, 0.8);
}
.roundimg {
border-radius: 50%;
margin-top: 20px;
width: 50%;
max-width: 150px;
}
h1{
margin-top: 20px;
font-size: 400%;
}
h3 {
margin-top: 20px;
padding: 0 20px;
}
.icons {
margin-top: 20px;
font-size: 180%;
}
.icon {
margin-right: 10px;
}
.item-zoom:hover img {
position: relative;
-moz-transform: scale(1.1);
-webkit-transform: scale(1.1);
transform: scale(1.1);
transition: all 0.3s ease-in-out;
}
.item-zoom-subtle:hover img {
position: relative;
-moz-transform: scale(1.03);
-webkit-transform: scale(1.03);
transform: scale(1.03);
transition: all 0.3s ease-in-out;
}
.flex-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 10px;
row-gap: 10px;
flex-direction: row;
}
.flex-container > div {
flex-basis: content;
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}