-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
63 lines (57 loc) · 930 Bytes
/
index.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
body{
background-color: black;
color: white;
}
.container{
width:80%;
margin:auto;
background-color: rgb(52, 50, 50);
border-radius: 20px;
}
.heading{
font-family: 'Lobster', cursive;
}
#span1{
color: red;
}
#img-div{
/* border: 2px solid red; */
text-align: center;
}
#image{
width: 500px;
margin: auto;
display:block;
box-shadow: 10px 2px 100px red;
}
#info{
/* border: 2px solid red; */
width: 80%;
margin:auto;
text-align: justify;
}
#marvel{
color: red;
margin: left 10%;;
}
ul{
/* border: 2px solid red; */
width: 80%;
margin: auto;
}
li{
font-size: 24px;
line-height: 3rem;
}
#link{
text-decoration: none;
color: white;
border: 2px solid darkgoldenrod;
padding: 1rem;
border-radius: 10px;
background-color: rgb(52, 50, 50);
}
#link:hover{
background-color:fuchsia;
color:red;
}