-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (50 loc) · 1.01 KB
/
style.css
File metadata and controls
55 lines (50 loc) · 1.01 KB
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
/* Style for the Canvas */
canvas {
border: solid lightcoral 2px;
margin: auto;
display: block;
background-image: url(images/canvas_image.jpg);
}
/* Style for the Index Page, Start menu */
.menu{
margin: auto;
margin-top: 80px;
text-align: center;
width: 700px;
height: 450px;
border: solid blue 5px;
font-family: monospace;
background-image: url(images/menu_image.png);
box-shadow: 10px 10px 10px black;
padding: 0px;
}
/* 'Asteroid' style text from start page */
.asteroidText{
color: red;
font-size: 500%;
font-family: monospace;
text-shadow: 1px 1px 1px #000,
3px 3px 5px black;
}
/* 'Dodge' style text for index page */
.dodgeText{
color: cornflowerblue;
font-size: 500%;
font-style: italic;
text-shadow: 5px 1px 10px #000,
20px 1px 20px cornflowerblue;
}
/* Button style for index page */
button{
font-family: sans-serif;
font-size: 120%;
padding: 10px;
font-style: italic;
}
/* All parargraphs style */
p{
font-family: cursive;
text-align: center;
color: blue;
padding: 0;
}