-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.css
114 lines (93 loc) · 1.63 KB
/
homepage.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
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#about {
float: right;
font-family: 'Pacifico', cursive;
color: #525050;
font-size: 2.5rem;
padding: 5px 30px 0 0;
}
#banner {
height: 25%;
width: 25%;
display: block;
margin: auto;
}
header {
font-family: 'Droid Serif', sans-serif;
}
body {
font-family: 'Cabin', sans-serif;
}
.wrapper {
max-width: 90%;
margin: 10px auto;
padding: 10px 20px;
background: #f4f7f8;
border-radius: 8px;
}
#title {
margin: 10px 0;
color: white;
font-family: 'Montserrat', sans-serif;
font-size: 5.2rem;
position: absolute;
z-index: 1;
text-align: center;
width: 100%;
line-height: 500px;
}
#projects, #profiles {
margin: auto;
text-align: center;
width: 100%;
height: 500px;
line-height: 500px;
font-size: 3rem;
color: #3cb3ad;
font-style: italic;
font-family: 'Pacifico', cursive;
}
#projects {
display: inline-block;
}
#profiles {
}
video {
display: block;
margin: 0 auto;
max-width: 100%;
border-radius: 5px;
position: absolute;
/*
background: white;
padding: 0;
opacity: 0.8;
*/
}
.jumbotron {
/* background-image: url('about-mainimage.jpeg');*/
position: relative;
background-size: cover;
min-height: 400px;
}
#textOverVid {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#footer {
background-color: #b8f4f4;
margin-top: 50px;
width: 100%;
min-height: 150px;
display: block;
text-align: center;
}
#footer p {
padding-top: 50px;
}