-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarvelUniverse.css
92 lines (79 loc) · 1.56 KB
/
MarvelUniverse.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* <style> */
/* CSS Reset */
/* body {
color: black;
margin: 0px;
padding: 0px;
/* background: url("IT262 Assignments/images/gym.jpg");
background-image: url("IT262 Assignments/images/gym.jpg");
background: url("images/gym.jpg"); */
body {
font-family: "Baloo Bhai", cursive;
color: black;
margin: 0px;
padding: 0px;
background-image: url("https://drive.google.com/file/d/1f1VNUdzcSYKJHOoWtHg46OWt9UnaaMw_/view?usp=sharing");
/* background-image: ; */
}
.left {
position: absolute;
left: 60px;
top: 20px;
display: inline-block;
border: 2px solid red;
}
.left img {
float: left;
width: 120px;
}
.left div {
line-height: 20px;
font-size: 20px;
text-align: center;
}
.mid {
display: block;
text-align: center;
width: 50%;
margin: 20px auto;
border: 2px solid yellow;
}
.right {
position: absolute;
right: 35px;
top: 20px;
display: inline-block;
border: 2px solid blue;
}
.navbar {
display: inline-block;
}
.navbar li {
display: inline-block;
font-size: 18px;
/* text-align: center; */
}
.navbar li a {
color: white;
padding: 35px 25px;
}
.navbar li a:hover,
.navbar li a:active {
text-decoration: underline;
color: blue;
}
.btn {
font-family: "Baloo Bhai", cursive;
margin: 0px 9px;
color: white;
background-color: black;
padding: 4px 14px;
border: 2px solid grey;
border-radius: 9px;
font-size: 16px;
cursor: pointer;
}
.btn:hover {
background-color: blue;
}
/* </style> */