-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
85 lines (69 loc) · 1.1 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
78
79
80
81
82
83
84
85
html, body {
background-color: #f8cb74;
}
h1 {
font-family: robotoBold;
}
p {
font-family: robotoRegular;
}
.social-logo {
fill: #fff;
}
.social-logo:hover {
fill: #f8cb74;
}
.content {
margin-top: 10rem;
display: flex;
justify-content: center;
color: #fff;
}
.content-card {
background-color: #333;
padding: 2rem;
}
.description {
display: flex;
justify-content: center;
}
.description p {
margin-top: 0;
}
.links {
display: flex;
justify-content: center;
}
.social-logos {
display: flex;
justify-content: center;
}
.social-logo {
fill: #fff;
padding-right: 0.5rem;
padding-left: 0.5rem;
}
.social-logo:hover {
fill: #f8cb74;
}
.title {
display: flex;
justify-content: center;
align-items: center;
font-family: robotoBold;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
@font-face {
font-family: robotoRegular;
src: url(./static/RobotoMono-Regular.ttf);
}
@font-face {
font-family: robotoBold;
src: url(./static/RobotoMono-Bold.ttf);
}