-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
74 lines (73 loc) · 1.15 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
body {
margin: 0;
background-color: #000;
overflow: hidden;
}
div.container {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
font-family: 'Montserrat';
font-weight: 700;
font-size: 82px;
color: #fff;
line-height: 90px;
letter-spacing: .5px;
text-transform: uppercase;
text-align: center;
}
div.box {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
div.box a {
text-decoration: none;
padding: 20px 50px;
border: 1px solid #646464;
display: inline-block;
margin: 20px 20px 0 20px;
}
div.box a:hover {
background-color: rgba(255, 255, 255, 0.2);
}
div.box a * {
float: left;
}
div.box p {
font-family: 'Roboto';
font-weight: 300;
font-size: 48px;
color: #646464;
line-height: 128px;
letter-spacing: .5px;
text-align: center;
display: inline-block;
margin: 0;
margin-right: 40px;
}
@media only screen and (max-width: 768px) {
h1 {
font-size: 32px;
}
div.box a {
padding: 10px 25px;
margin: 10px 10px 0 10px;
}
div.box p {
font-size: 18px;
line-height: 48px;
margin-right: 15px;
}
div.box img {
height: 48px;
width: 48px;
}
}