-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
67 lines (56 loc) · 984 Bytes
/
Copy pathmain.css
File metadata and controls
67 lines (56 loc) · 984 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
59
60
body{
background-color: #f0dbdb;
text-align: center;
}
.flex-container{
display: flex;
background-color:rgb(2, 2, 2);
flex-direction: row;
justify-content:flex-start;
position: fixed;
top:0%;
width: 100%;
padding: 0 10px;
}
.flex-container a{
color: rgb(255, 255, 255);
margin: 10px;
padding: 10px;
font-weight: bold;
font-size: 24px;
text-decoration: none;
box-shadow: 5px 5px 5px grey;
}
.container{
text-align: center;
padding: 2px 16px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.2s;
width: 100%;
margin:20px 5px 20px 5px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
transform:rotate(-5deg);
}
.row{
margin: 0 -5px;
}
footer{
left: 10px;
bottom: 5px;
right: 10px;
width: 100%;
background-color: rgb(68, 67, 67);
color:rgb(255, 255, 255);
}
.image{
border-radius: 10px;
display: inline-block;
height:250px;
}
.image:hover{
opacity: 0.8;
}