Skip to content

Commit fea54d2

Browse files
committed
Copied the main stylesheet for now but it would be good to have custom background images for the different languages
1 parent 5402d3a commit fea54d2

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

languages/styles/main.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
h1, h2, h3 {
17+
color: #00FF00;
18+
}
19+
20+
a:link{
21+
color: #FFFF00;
22+
}
23+
24+
a:visited{
25+
color: #FFFF50;
26+
}
27+
28+
.main_body { /* This controls the "body" of the main central column i.e. not the title */
29+
margin-top: 50px;
30+
color: #FFFFFF;
31+
}
32+
33+
.menu {
34+
background-color: #000000;
35+
position: absolute;
36+
margin-top: 60px;
37+
width: 10%;
38+
left: 0%;
39+
padding-left: 2%;
40+
color: #00FF00
41+
}

0 commit comments

Comments
 (0)