-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
78 lines (65 loc) · 1.09 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
* {
color: #BDBFC0;
}
body {
background-color: #1F242A;
}
#container {
margin-left: 100px;
margin-right: 100px;
}
#title {
}
#items {
width: 100%;
list-style: none;
display: flex;
flex-wrap: wrap;
}
.item {
width: 33.3%;
float: left;
display: flex;
}
.item .title {
font-size: 24px;
color: #fff;
align-self: flex-start;
}
.item:hover {
background-color: #1a1e23;
}
.item:hover .github {
visibility: visible;
}
.item .content {
display: flex;
flex-direction: column;
padding: 15px;
}
.item .content .decorative-line {
margin-left: 50px;
margin-right: 50px;
margin-top: 15px;
border-bottom: 1px solid #323a43;
}
.github {
visibility: hidden;
text-decoration: none;
font-size: 20px;
background-color: #fff;
display: flex;
flex-direction: row;
align-items: center;
padding: 2px 5px 2px 5px;
border-radius: 5px;
margin-top: auto;
margin-bottom: 0;
align-self: center;
color: #1F242A;
}
.github img {
width: 20px;
height: 20px;
margin-right: 10px;
}