-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (53 loc) · 881 Bytes
/
style.css
File metadata and controls
58 lines (53 loc) · 881 Bytes
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
h1{
color: rgb(254, 219, 225);
text-align: center;
}
p{
font-size: 24px;
color:yellow;
}
h2{
color: rgb(136, 221, 252);
}
.footer{
font-size: 23px;
color: rgb(255, 255, 255);
}
.grid{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
.back{
background-image: url(bg.PNG);
border: solid;
border-color: palevioletred;
border-width: 10px;
}
.item{
border: solid;
border-width: 10px;
border-color: plum;
padding: 20px;
margin: 20px;
position: relative;
}
.item h2{
left: 50%;
top: 25%;
transform: translate(-50%, -75%);
opacity: 0;
position: absolute;
}
.item:hover h2 {
opacity: 1;
}
.item:hover img{
opacity: 0.33;
}
.footer a:link{
color: ivory;
}
.footer a:visited{
color: rgb(43, 226, 98);
}