-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
101 lines (91 loc) · 1.59 KB
/
main.css
File metadata and controls
101 lines (91 loc) · 1.59 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
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
.background {
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.home {
background-image: url("static/snowmass.jpg");
}
.engineering {
background-image: url("static/senior_design.jpg");
}
.photography {
background-image: url("static/island_lake.jpg");
}
button.transparent {
background: Transparent no-repeat;
text-align: center;
border: none;
padding: 5px 10px;
cursor: pointer;
overflow: hidden;
display: inline-block;
outline: none;
font-size: 20px;
transition-duration: 0.15s;
}
button.transparent:hover {
color: ivory;
}
button.gold {
color: goldenrod;
}
button.language {
font-size: 15px;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
}
.top-right {
position: absolute;
top: 5px;
right: 5px;
}
.bottom {
position: absolute;
bottom: 5px;
width: 98.5%;
}
.social-icons {
text-align: center;
}
.social-icons li {
display: inline-block;
list-style-type: none;
}
.social-icons li a {
border-bottom: none;
}
.social-icons li img {
margin-left: 11px;
margin-right: 11px;
}
.text-container {
width: 40%;
min-width: 400px;
max-width: 600px;
margin: auto;
}
p {
font-family: Verdana, "DejaVu Sans", sans-serif;
font-size: 16px;
line-height: 1.55;
}
p.caption {
font-size: 14px;
line-height: 1.2;
}
.photo-container {
width: 80%;
min-width: 400px;
margin: auto;
}
.full-size-image {
width: 100%;
height: 100%;
object-fit: contain;
}