-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.css
120 lines (117 loc) · 2 KB
/
people.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
body{
margin-top: 0;
background-color: #f0f0f0;
font-family: 'Ubuntu', sans-serif;
}
a{
font-style: italic;
color: #444;
}
.navbar{
padding-top: 2px;
position: sticky;
top: 0;
z-index: 999;
height:4rem;
max-height: 10%;
width: 100%;
clear:both;
background-color: #f0f0f0;
border-bottom: black 2px solid;
}
.navbar h1{
float: left;
justify-content: center;
margin-left: 10px;
}
.navbar img{
float:left;
max-width: 100%;
max-height: 100%;
}
.navbar-links{
display: flex;
float: right;
text-decoration: none;
align-self: flex-end;
list-style-type: none;
justify-content: center;
padding-right: 80px;
}
.navbar-links a{
color:black;
text-decoration: none;
font-size: 14pt;
}
.navbar-links li{
width: 5rem;
}
.navbar-links a:hover{
color:lightskyblue
}
.people-container{
width: 80%;
margin-left: auto;
margin-right: auto;
}
.people-category{
font-size: 24pt;
margin: 10px;
}
.container{
height: 25%;
width: 100%;
padding: 5px;
border-bottom: 2px solid black;
}
.container img{
height: 100%;
width: 100%;
border-radius: 50%;
border: rgb(87, 150, 171) 4px solid;
}
.container p{
font-family: 'Merriweather', serif;
}
.row{
display: flex;
}
.col1{
width: 15%;
height: 15%;
margin: 20px;
margin-left: 0%;
margin-right: auto;
text-align: center;
}
.col2{
width: 15%;
height: 15%;
margin: 20px;
margin-left: 0%;
margin-right: auto;
text-align: center;
}
.col3{
width: 15%;
height: 15%;
margin: 20px;
margin-left: 0%;
margin-right: auto;
text-align: center;
}
.col4{
width: 15%;
height: 15%;
margin: 20px;
margin-left: 0%;
margin-right: auto;
text-align: center;
}
.footer{
margin-top: 100px;
width: 100%;
height:50px;
font-size: 10pt;
text-align: center;
}