-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
99 lines (99 loc) · 2.04 KB
/
index.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
@font-face {
font-family: monoid;
src: url(./libraries/gui/monoid-regular-webfont.woff);
}
@media (max-width: 768px) {
#container {
flex-flow: column;
}
}
@media (min-width:768px) {
}
body, html {
height: 100%;
}
a {
color: rgb(211, 73, 52);
text-decoration: none;
}
#header {
width: 100%;
flex-basis: 100%;
text-align: center;
font-size: 120%;
margin: 1em;
padding-bottom: 1em;
border-bottom: 1px solid black
}
#footer {
width: 100%;
flex-basis: 100%;
text-align: center;
font-size: 120%;
margin: 0em;
padding-top: 1em;
border-top: 1px solid black
}
#flexContainer {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
margin-bottom: 1rem;
}
#whoContainsTheContainer {
display: flex;
flex-basis: auto;
justify-content: center;
margin: auto;
margin-top: 1rem;
margin-bottom: 5rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
padding-bottom: 0.5rem;
-webkit-backdrop-filter: blur(2px);
backdrop-filter: blur(5px);
background-color: rgba(50, 70, 150, 0.3);
background-opacity: 0.1;
border-radius: 3px;
border: 1px solid black;
color: dark-grey;
font-family: monoid;
font-size: 18px;
width: 90%;
}
#container {
justify-content: center;
display: flex;
flex-wrap: wrap;
align-items: center;
margin: 0.5rem;
gap: 1rem;
}
.wrapper {
flex-basis: 35rem;
justify-content: center;
align-items: center;
height: auto;
margin-bottom: 3rem;
}
.imgContainer {
height: auto;
display: block;
margin: auto;
text-align: center;
}
.titleContainer {
text-align: center;
margin-bottom: 0.5rem;
}
img {
text-align: center;
margin: auto;
object-fit: cover;
max-height: 25rem;
vertical-align: middle;
border-radius: 3px;
box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.3);
/*border: 1px solid black;*/
}