-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
89 lines (73 loc) · 1.35 KB
/
stylesheet.css
File metadata and controls
89 lines (73 loc) · 1.35 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
/* By: Yanelis Lopez */
body {
background: url(background.jpg);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
text-align: center;
font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
color: white;
height: 100%;
padding-bottom: 140px;
}
/* Styling for elements with information */
.section {
background: #000014;
padding: 30px 0;
font-size: 16px;
}
/* Styling for text in section */
.section-text {
padding-left: 30px 0;
padding-right: 30px 0;
}
/* Styling for titles in section */
.section-title {
color: #7EDFFF;
}
/* Provides padding between sections */
.space {
padding: 90px 0;
}
.icon {
font-size: 30px;
}
/* Properties to crossfade images */
/*.crossfade {
position: relative;
}
.crossfade img {
position: absolute;
transition: opacity 1s ease;
}
.crossfade img:hover {
opacity: 0;
}*/
/* To center elements vertically on page */
.vertical-center {
height: 500px;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
.vertical-align {
position: relative;
top: 50%;
transform: translateY(-50%);
}
/* Styling for footer on page */
.footer {
margin: auto;
position: fixed;
margin: auto;
left: 0;
bottom: 0;
width: 100%;
height: 55px;
padding-top: 5px;
background-color: black;
}