-
Notifications
You must be signed in to change notification settings - Fork 0
/
pss.css
120 lines (99 loc) · 1.76 KB
/
pss.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
108
109
110
111
112
113
114
115
116
117
118
119
120
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans&display=swap');
* {
font-family: "Playpen Sans";
padding: 0;
margin: 0;
}
a {
color: black;
font-size: 1.1em;
}
#container {
display: flex;
position: relative;
min-height: 100vh;
padding-bottom: 20px;
}
#footer-wrap {
padding-bottom: 80px;
}
#content {
width: 50%;
margin: 50px auto auto auto;
text-align: center;
}
#content h1:first-of-type {
color: #6510a1;
font-size: 4.5em;
}
h2 {
font-size: 2.75em;
margin: 10px;
}
p {
font-size: 1.45em;
}
h3 {
font-size: 2.25em;
margin: 15px;
}
#members-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
margin-top: 20px;
}
.member {
padding: 40px;
width: 25%;
margin: 0px 10px 0px 10px;
border-radius: 10px;
box-shadow: 0px 0px 5px 0px rgba(173, 173, 173, 0.75);
}
.member h4 {
font-size: 25px;
overflow: hidden;
margin-top: 10px;
}
#members-container img {
border-radius: 50%;
width: 90%;
}
#footer {
width: 100%;
position: absolute;
font-size: .75em;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
border-top: 1.5px solid black;
bottom: 0;
}
#footer span {
padding: 0px 10px 0px 10px;
text-align: center;
}
@media only screen and (max-width: 479px) {
#members-container {
flex-direction: column;
}
.member {
margin-top: 20px;
}
#footer {
flex-direction: column;
padding-bottom: 10px;
padding-top: 10px;
}
#footer-wrap {
padding-bottom: 90px;
}
#footer span {
display: none;
}
#content {
width: 90%;
}
}