-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
46 lines (40 loc) · 816 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
body {
background-color: rgb(49, 53, 53);
color: white;
}
div.Container {
display: flex;
flex-direction: column;
margin: 80px;
margin-left: 160px;
margin-right: 160px;
}
div.Showcase {
display: flex;
justify-content: space-between;
align-items: center;
height: 120px;
border-radius: 20px;
border-width: 2px;
border-style: solid;
}
div.TextDiv {
font-size: 32px;
font-family:Verdana, Geneva, Tahoma, sans-serif;
margin: auto;
}
img.Preview {
width: 240px;
height: 120px;
border-radius: 18px;
float: right;
}
a, a.visited {
margin: 20px;
color:inherit !important;
text-decoration: none !important;
}
a :hover {
background-color: rgb(78, 89, 89);
transition-duration: 0.2s;
}