-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
91 lines (82 loc) · 1.54 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
86
87
88
89
90
91
html, body {
height: 100%;
width: 100%;
background-color: #000;
color: #fff;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
-webkit-font-feature-settings: 'liga', 'kern';
-moz-font-feature-settings: 'liga', 'kern';
font-feature-settings: 'liga', 'kern';
}
img {
max-width: 100%;
}
.containers {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding: 10px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
margin: 10px;
border: 1px solid #fff;
min-height: 400px;
transition: all 750ms ease-in-out;
}
.container:hover {
background-color: #5a25f7;
}
.sub-logo > img {
height: 200px;
max-width: 100%;
margin: 0 auto;
}
.side-text {
padding-bottom: 30px;
max-width: 400px;
}
.side-text-content {
font-size: 20px;
letter-spacing: 1px;
}
.title {
width: 100%;
display: block;
text-align: center;
font-size: 46px;
font-weight: 100;
letter-spacing: 3px;
margin-bottom: 0;
}
.coming-soon {
width: 100%;
display: block;
text-align: center;
font-size: 26px;
font-weight: 100;
letter-spacing: 2px;
margin-top: 0;
}
@media only screen and (max-width: 500px) {
.containers {
flex-direction: column;
}
.container {
height: auto;
}
}
@keyframes fade {
100% { opacity: 1; }
}