-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (89 loc) · 1.53 KB
/
style.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
92
93
94
95
96
97
98
99
100
101
* {
box-sizing: border-box;
scroll-behavior: smooth;
}
.lander {
font-family: 'Roboto', sans-serif;
display: flex;
flex-direction: column;
height: auto;
}
.header {
margin: 3rem 3rem 0rem 3rem;
display: flex;
flex-direction: column;
justify-content: center;
}
.header__image {
align-self: center;
width: 100px;
height: 100px;
}
.header__title {
text-align: center;
font-size: 1.6rem;
margin: 1rem 1rem 0rem 1rem;
}
.header__handle {
text-align: center;
font-style: italic;
font-size: 0.8rem;
margin: 0rem 1rem 0rem 1rem;
}
.links {
display: flex;
height: 40%;
display: -webkit-flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.link__wrapper {
overflow: hidden;
width: 88%;
display: flex;
flex-direction: column-reverse;
justify-content: center;
align-items: center;
height: auto;
text-align: center;
}
.links__button {
background-color: white;
z-index: 1;
width: 88%;
color: black;
text-align: center;
text-decoration: none;
display: inline-block;
cursor: pointer;
border-top: 1px solid #cccccc;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #cccccc;
}
.widget {
margin: 0rem 1rem 1.5rem 1rem;
}
.S-widget {
margin: 1rem 1rem 0rem 1rem;
}
.link-icon {
padding-left: 0.5rem;
}
@-webkit-keyframes zoom {
from {
-webkit-transform: scale(0);
}
to {
-webkit-transform: scale(1);
}
}
@keyframes zoom {
from {
transform: scale(0);
}
to {
transform: scale(1);
}
}