Skip to content

Commit c1172a1

Browse files
committed
merge conflict
2 parents e15e744 + 001a5d5 commit c1172a1

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

index.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
<!DOCTYPE html>
2+
<html>
23
<head>
3-
<title>Code Club</title>
4+
<title>Code Club Home</title>
5+
<link rel="stylesheet" type="text/css" href="styles/main.css"/>
46
</head>
57
<body>
6-
<h1 id="cardiff-school-of-mathematics-code-club">Cardiff School of Mathematics Code Club</h1>
7-
<p>Meeting time: Thursdays at 16:00 in M/0.33</p>
8-
<p>(There might be doughnuts - if you're quick!)</p>
98

9+
<div class="main">
10+
<h1 id="cardiff-school-of-mathematics-code-club">Cardiff School of Mathematics Code Club</h1>
11+
12+
<div class="main_body">
13+
<p>Meeting time: Thursdays at 16:00 in M/0.33</p>
14+
<p>(There might be doughnuts - if you're quick!)</p>
15+
<p>Vince's favourite quote so far "love the fact that I'm learning Vim on the fly!" Adam, 2nd year student </p>
16+
<p><a href='https://projecteuler.net'>Here's a link to the Euler problems.</a></p>
17+
</div>
1018
<a href="sessions.html">Sessions</a>
19+
</div>
1120
</body>
1221
</html>

res/background.png

750 KB
Loading

styles/main.css

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
body{ /* Sets the background image for the site */
2+
background-image: url('../res/background.png');
3+
}
4+
5+
.main { /* This controls the "main" part of the page i.e. what goes in the centre column */
6+
background-color: #000000;
7+
position: absolute;
8+
margin-top: 50px;
9+
width: 50%;
10+
left: 21%;
11+
padding-left: 4%;
12+
padding-right: 4%;
13+
color: #00FF00;
14+
}
15+
16+
a:link{
17+
color: #FFFF00;
18+
}
19+
20+
a:visited{
21+
color: #FFFF50;
22+
}
23+
24+
.main_body { /* This controls the "body" of the main central column i.e. not the title */
25+
margin-top: 50px;
26+
color: #FFFFFF;
27+
}

0 commit comments

Comments
 (0)