-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (108 loc) · 1.65 KB
/
style.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
/* Background*/
body {
background-image: url("/assets/images/paper.jpeg");
background-repeat: repeat-y;
background-size: 1450px 1000px;
}
/* Navigation Bar */
ul {
list-style-type: none;
margin: 20;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
/*Headers & Sub-headers*/
h1 {
font-family: georgia, fantasy;
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
}
h2 {
display: flex;
align-items: center;
justify-content: center;
font-size: 25px;
}
/*Paragraphs*/
.text {
font-size: 17px;
padding-left: 40px;
max-width: 700px;
margin: 0 auto 10px;
}
.text2 {
font-size: 17px;
padding-right: 600px;
max-width: 700px;
margin: 0 auto 10px;
}
p {
font-size: 20px;
}
/*Containers holding paragraphs and images for each section*/
#about {
position: relative;
text-align: center;
}
#container2 {
border: 5px solid #000000;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
#container3 {
border: 5px solid #010101;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
#container4 {
border: 5px solid #010000;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
/*Images for each section*/
img {
max-width: 1000%;
left: 5px;
}
.image {
flex-basis: 40%;
}
.image2 {
position: relative;
left: 1014px;
}
.image2 {
flex-basis: 40%;
}
.dancers {
position: absolute;
top: 100px;
right: 60px;
}
.jazz {
position: absolute;
top: 100px;
left: 60px;
}