-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
73 lines (64 loc) · 1.4 KB
/
main.css
File metadata and controls
73 lines (64 loc) · 1.4 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
66
67
68
69
70
71
72
73
body {
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
background: url(https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.4.3_the_position_property/outerspace_landscape.jpeg) no-repeat fixed center center;
background-size: cover;
/*background-repeat: no-repeat;*/
}
a {
text-decoration: none;
border-right:solid 2px black;
padding-right: 5px;
}
.navigation {
position: fixed;
background-color: gray;
width: 100%;
height: 60px;
padding-left :60px;
padding-right : 60px;
padding-top: 10px;
}
.navimage{
width: 50px;
height : 50px;
border-radius: 60px;
border :1px solid black;
}
ul, li{
display:inline-block;
position :relative;
bottom :10px;
}
main {
padding :30%;
}
.outerDiv{
height: 200px;
width :600px;
/*padding : 30px;*/
border: 10px dotted green;
position: relative;
margin-left: auto;
margin-right: auto;
}
.common{
position :absolute;
}
.div2{
height: 200px;
width: 200px;
background-image: url(https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.4.3_the_position_property/spacecat.png);
background-size :contain;
top: -90px;
left: -90px;
}
.div3{
height: 200px;
width: 200px;
background-image: url(https://tf-assets-prod.s3.amazonaws.com/tf-curric/WEB-DEV-001/2.4.3_the_position_property/spacedog.png);
background-size :contain;
bottom: -100px;
right: -60px;
}
/** your styles go here **/