-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
62 lines (62 loc) · 1.04 KB
/
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
.youtubeBtn {
color: pink;
background-color: transparent;
border: 2px solid pink;
}
.youtubeBtn:hover {
background-color: pink;
color: white;
}
.navRight {
width: 200px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logOutBtn {
border: 2px solid black;
color: black;
background: transparent;
}
.logOutBtn:hover {
background-color: black;
color: white;
}
.containAreas {
height: auto;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.newArea {
height: 70vh;
width: 90%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: black;
color: white;
margin: 10px;
}
.imageArea {
height: 100%;
width: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.infoarea {
height: 100%;
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
margin-right: 5px;
}
.card{
background-color: black;
border: 2px solid white;
}