-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
68 lines (57 loc) · 1.23 KB
/
index.css
File metadata and controls
68 lines (57 loc) · 1.23 KB
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
@font-face {
font-family: 'Brotherhood Script';
src: url('font/Brotherhood Script/ttf');
}
h1 {
font-family: 'Brotherhood Script';
text-align: center;
font-size: 170pt;
font-weight: normal;
margin-top: .5em;
}
a {
text-decoration: none;
color: #1F1F4D;
transition: text-shadow 0.3s ease;
}
a:hover {
text-shadow:
-3px -3px 0 #F5EF98,
3px -3px 0 #F5EF98,
-3px 3px 0 #F5EF98,
3px 3px 0 #F5EF98;
}
.icons {
text-align: center;
}
.icons a {
display: block;
min-width: 5em;
min-height: 5em;
background-repeat: no-repeat;
background-position: center;
}
.icons li {
display: inline-block;
border: 2px solid;
padding: .25em;
border-radius: 10px;
transition: border-style 0.3s ease;
margin-right: .5em;
}
.icons li:hover {
border-style: dashed;
background-color: #F5EF98;
}
.icons [title='Facebook'] a {
background-image: url('image/logo/Facebook/letter/svg.svg');
}
.icons [title='Bitcoin'] a {
background-image: url('image/logo/bitcoin/svg.svg');
}
.icons [title='GitHub'] a {
background-image: url('image/logo/GitHub/svg.svg');
}
.icons [title='E-Mail'] a {
background-image: url('image/icon/mail/svg.svg');
}