-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (58 loc) · 1.04 KB
/
style.css
File metadata and controls
66 lines (58 loc) · 1.04 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
56
57
58
59
60
61
62
63
64
65
html, body {
height: 100%;
width: 100%;
}
/*Styling for canvas*/
canvas {
display: block;
padding: 100px;
margin-left: 300px;
padding-left: 400;
}
/*Sets background color of app*/
body {
background-color: #FF4040;
}
/*Styling for different types of text*/
h1{
font-family: sans-serif;
font-style: bold;
color: white;
text-align: center
}
/*centers an image*/
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
/*class with specific properties for certain images*/
.image1 {
border-style: solid;
border-color: white;
border-radius: 30px;
width: 700px;
height: 450px;
left:1000px;
top:100px;
position:relative;
}
/*class with specific properties for certain images*/
.image2 {
width: 400px;
height: 200px;
left:750px;
top:0px;
position:relative;
}
/*class that allows one to overlay text onto the bottom-left of an image*/
.bottom-left {
position: absolute;
bottom: 8px;
left: 16px;
font-size: 50;
font-family: sans-serif;
color: white;
text-align: center;
}