-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
156 lines (143 loc) · 6.48 KB
/
about.html
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About | Cavalier Symphony Orchestra</title>
<link href="https://fonts.googleapis.com/css?family=Satisfy" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/5.0.0/normalize.css">
<link rel="stylesheet" href="css/cso.css">
</head>
<body>
<!--#include file="navbar.html"-->
<div id="about-background" class="page-background background-fixed">
<img src="raw/logos/logo-white.png">
</div>
<div class="vertical-scrollbar">
<div class="vs-link">
<a href="#who">Who</a>
</div>
<div class="vs-link">
<a href="#what">What</a>
</div>
<div class="vs-link">
<a href="#welcome">Welcome</a>
</div>
</div>
<section id="mission" class="info-section-title">
<div class="container">
<h2 class="fs-title">We are Cavalier Symphony Orchestra</h2>
<div class="horizontal-border"></div>
<p class="fs-subtitle col-sm-offset-1 col-sm-10">Our mission is to foster a welcoming instrumental family where students can grow musically, find a family, and shape their own musical experience</p>
</div>
</section>
<section id="who" class="info-section">
<div class="info-title-center">
<h1 class="fs-title">Who are we?</h1>
</div>
<div class="container">
<div class="info-card row">
<div class="col-sm-offset-1 col-sm-5">
<img class='icon' src="raw/icons/black-graduation-cap-tool-of-university-student-for-head.svg" alt="">
<h2 class="fs-content-title">We are students</h2>
<p class="fs-content">CSO is an organization composed 100% of UVa students. We are the largest student-run full orchestra organization at UVa.</p>
</div>
<div class="col-sm-offset-1 col-sm-5">
<img class='icon' src="raw/icons/black-graduation-cap-tool-of-university-student-for-head.svg" alt="">
<h2 class="fs-content-title">We are leaders</h2>
<p class="fs-content">Our members are student conductors, executive board members, committee members, section leaders, to name a few.</p>
</div>
</div>
<div class="info-card row">
<div class="col-sm-offset-1 col-sm-5">
<img class='icon' src="raw/icons/french-horn.svg" alt="">
<h2 class="fs-content-title">We are musicians</h2>
<p class="fs-content">CSO is home to players of all experience levels and backgrounds.</p>
</div>
</div>
</div>
</section>
<section id="what" class="info-section">
<div class="info-title-center">
<h1 class="fs-title">What are we?</h1>
</div>
<div class="container">
<div class="info-card row">
<div class="col-sm-offset-1 col-sm-5">
<img class='icon' src="raw/icons/quarter-note-rest.svg" alt="">
<h2 class="fs-content-title">We are passionate</h2>
<p class="fs-content">Quite simply, we love playing music.</p>
</div>
<div class="col-sm-offset-1 col-sm-5">
<img class='icon' src="raw/icons/multiple-users-silhouette.svg" alt="">
<h2 class="fs-content-title">We are diverse</h2>
<p class="fs-content">We have first years through graduates, artists and engineers, Virginia-natives and international students.</p>
</div>
</div>
<div class="info-card row">
<div class="col-sm-offset-1 col-sm-5">
<img class='icon' src="raw/icons/heart.svg" alt="">
<h2 class="fs-content-title">We are family</h2>
<p class="fs-content">Came for the music, stayed for the friends.</p>
</div>
</div>
</div>
</section>
<section id="photos" class="info-section">
<div class="info-title-center">
<h1 class="fs-title">We are CSO!</h1>
<p class="fs-subtitle"></p>
</div>
<div id="headshots" class="row">
</div>
</section>
<!--#include file="footer.html"-->
<style>
#about-background::before {
background-image: url(raw/images/viola.png);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
#about-background {
min-height: inherit;
height: 80%;
}
#who {
background: #231f20;
color: #fff;
}
#what {
background: #fff;
color: #000;
}
#photos {
background: #231f20;
color: #fff;
}
#headshots, .headshot {
padding: 0;
margin: 0;
}
.headshot img {
width: 100%;
}
h2, h1 {
color: #BC994E;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(window).on('scroll',function(){
if(window.pageYOffset > $('#who').offset().top) {
$('#about-background').css('visibility', 'hidden');
} else {
$('#about-background').css('visibility', 'visible');
}
})
</script>
</body>
</html>