Skip to content

Commit 097ae8a

Browse files
committed
spring roster
1 parent 45c5576 commit 097ae8a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+266
-1
lines changed

public/challenge/.swp

-12 KB
Binary file not shown.
File renamed without changes.

public/challenge/fall2020/index.html

Lines changed: 177 additions & 0 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
body {
2+
background: url(https://coding.space/images/2018background.jpg);
3+
-webkit-background-size: cover;
4+
-moz-background-size: cover;
5+
-o-background-size: cover;
6+
background-size: cover;
7+
text-align: center;
8+
}
9+
p {
10+
margin-top: 10vh;
11+
}
12+
#title {
13+
font-size: 3.5em;
14+
}
15+
h1 {
16+
font-size: 2.5em;
17+
font-family: 'Quicksand', sans-serif;
18+
font-weight: bold;
19+
}
20+
img {
21+
display: inline-block;
22+
margin: 5px;
23+
}
24+
#imageContainer {
25+
display: flex;
26+
align-items: center;
27+
justify-content: center;
28+
height: 40vh;
29+
cursor: pointer;
30+
}
31+
#titleContainer {
32+
display: flex;
33+
align-items: center;
34+
justify-content: center;
35+
height: 30vh;
36+
color: white;
37+
}
38+
.challenge {
39+
position: fixed; /* Sit on top of the page content */
40+
display: none; /* Hidden by default */
41+
width: 100%; /* Full width (cover the whole page) */
42+
height: 100%; /* Full height (cover the whole page) */
43+
top: 0;
44+
left: 0;
45+
right: 0;
46+
bottom: 0;
47+
background-color: rgba(0,0,0,0.95); /* Black background with opacity */
48+
z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
49+
cursor: pointer; /* Add a pointer on hover */
50+
text-align: center;
51+
color: white;
52+
padding-top: 15vh;
53+
font-size: 200%;
54+
}
55+
#footer {
56+
width: 100%;
57+
display: flex;
58+
justify-content: center;
59+
font-family: 'Quicksand', sans-serif;
60+
}
61+
.button {
62+
background-color: #78B8FB;
63+
border-radius: 10px;
64+
margin: 5px;
65+
display: flex;
66+
align-content: center;
67+
justify-content: center;
68+
align-items: center;
69+
}
70+
.past {
71+
width: 100%;
72+
justify-content: center;
73+
font-size: 30px;
74+
color: white;
75+
text-decoration: none;
76+
}
77+
.past:hover {
78+
color: white;
79+
text-decoration: none;
80+
}
81+
.past:visited {
82+
color: white;
83+
text-decoration: none;
84+
}
85+
.past:active {
86+
color: white;
87+
text-decoration: none;
88+
}

0 commit comments

Comments
 (0)