-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
67 lines (65 loc) · 1.22 KB
/
about.css
File metadata and controls
67 lines (65 loc) · 1.22 KB
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
/* playing with sticky footer before adding to main html */
html{
height: 100%;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
margin: 0;
}
h1 {
font-size: 40px;
font-family: 'Montserrat', sans-serif;
/* font-family: 'Gravitas One', cursive; */
/* border: 2px solid red; */
}
.content {
flex: 1 0 auto;/* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
}
.nav {
background-color: rgba(20,20,20, .5);
/* background-color: rgba(82, 88,110,1.0); */
color: white;
padding-top: 10px;
padding-bottom: 10px;
padding-right: 60px;
margin-top:5px;
margin-bottom: 5px;
}
.right{
float:right;
}
.link a {
font-family: 'Montserrat', sans-serif;
font-size: 1.5rem;
color: white;
/* border: 2px solid red; */
}
.link a:visited {
color:#3e0a72;
}
.inline a:link {
color:white;
}
.inline a:visited {
color:#3e0a72;
}
.about {
text-align: center;
padding: 40px 60px;
}
.portrait {
max-width: 200px;
border-radius: 50%;
}
.about p {
/* border: 2px solid red; */
font-family: 'Montserrat', sans-serif;
font-weight: 300;
margin-bottom: 25px;
line-height: 1.5;
}
.footer{
flex-shrink: 0;
}