1
+ html , body {
2
+ height : 100% ;
3
+ width : 100% ;
4
+ margin : 0 ;
5
+ background-color : # 001A25 ;
6
+ }
7
+
8
+ input {
9
+ -webkit-appearance : none;
10
+ }
11
+ .button {
12
+ -webkit-appearance : none;
13
+ }
14
+ button {
15
+ -webkit-appearance : none;
16
+ }
17
+
18
+ .arva-btn {
19
+ font-family : 'Montserrat' , sans-serif;
20
+ font-weight : 300 ;
21
+ letter-spacing : 2px ;
22
+ height : 40px ;
23
+ border-radius : 5px ;
24
+ width : 156px ;
25
+ font-size : 11px ;
26
+ background-color : # 00FA9A ;
27
+ color : # 001A27 ;
28
+ transition : all 0.2s ease-in-out;
29
+ text-transform : uppercase;
30
+ box-shadow : 0 2px 4px 0 rgba (0 , 250 , 154 , 0.33 );
31
+ border : none;
32
+ }
33
+
34
+ .transparent-btn {
35
+ background-color : transparent;
36
+ border : 1px rgba (0 , 250 , 154 , 0.3 ) solid;
37
+ box-shadow : none;
38
+ color : white;
39
+ }
40
+
41
+ .dashed-btn {
42
+ background-color : transparent;
43
+ border : 1px rgba (0 , 250 , 154 , 0.3 ) dashed;
44
+ box-shadow : none;
45
+ color : white;
46
+ }
47
+
48
+ # full-page-body {
49
+ padding : 120px 94px ;
50
+ height : auto;
51
+ position : absolute;
52
+ top : 0 ;
53
+ left : 0 ;
54
+ right : 0 ;
55
+ bottom : 0 ;
56
+ }
57
+
58
+ # landing-grid {
59
+ height : 100% ;
60
+ display : grid;
61
+ grid-template-columns : 1fr 1fr 1fr 1fr 1fr 1fr ;
62
+ grid-template-rows : 1fr 1fr 1fr 1fr 1fr 1fr ;
63
+ grid-template-areas :
64
+ 'rocket rocket rocket private private private'
65
+ 'rocket rocket rocket private private private'
66
+ 'rocket rocket rocket total total total'
67
+ 'ready ready ready total total total'
68
+ 'ready ready ready goal goal goal'
69
+ 'ready ready ready goal goal goal'
70
+ 'subtitle subtitle subtitle cap cap cap'
71
+ 'subtitle subtitle subtitle cap cap cap'
72
+ 'buttons buttons buttons x10 x10 showAll'
73
+ 'buttons buttons buttons x10 x10 showAll' ;
74
+ }
75
+
76
+ # rocket {
77
+ grid-area : rocket;
78
+ }
79
+
80
+ # private {
81
+ grid-area : private;
82
+ }
83
+
84
+ # total {
85
+ grid-area : total;
86
+ }
87
+
88
+ # ready {
89
+ grid-area : ready;
90
+ }
91
+ # ready-title {
92
+ /* Ready for the big ga: */
93
+ font-family : Montserrat-Black;
94
+ font-size : 70px ;
95
+ color : # FFFFFF ;
96
+ letter-spacing : 0 ;
97
+ }
98
+ # ready-title span {
99
+ color : # 00E4C3 ;
100
+ }
101
+ # ready-subtitle {
102
+ /* Because we are.: */
103
+ font-family : Montserrat-Light;
104
+ font-size : 48px ;
105
+ color : # FFFFFF ;
106
+ letter-spacing : 0 ;
107
+ }
108
+
109
+ # goal {
110
+ grid-area : goal;
111
+ }
112
+
113
+ # subtitle {
114
+ grid-area : subtitle;
115
+ }
116
+ # subtitle-text {
117
+ /* Private ICO investme: */
118
+ font-family : Roboto-Light;
119
+ font-size : 26px ;
120
+ color : # C4DFDA ;
121
+ letter-spacing : 0 ;
122
+ line-height : 36px ;
123
+ }
124
+
125
+ # cap {
126
+ grid-area : cap;
127
+ }
128
+
129
+ # buttons {
130
+ grid-area : buttons;
131
+ }
132
+
133
+ # x10 {
134
+ grid-area : x10;
135
+ display : flex;
136
+ flex-direction : row;
137
+ }
138
+
139
+ # showAll {
140
+ grid-area : showAll;
141
+ }
142
+
143
+ # logo-arva {
144
+ width : 107px ;
145
+ height : 109px ;
146
+ background-size : contain;
147
+ }
148
+
149
+ # x10-image {
150
+ width : 60px ;
151
+ height : 60px ;
152
+ flex : 1 0 80px ;
153
+ background-repeat : no-repeat;
154
+ }
155
+
156
+ # x10-explain {
157
+ color : # C4DFDA ;
158
+ /* Get a x10 multiplier: */
159
+ font-family : Roboto-Light;
160
+ flex : 0 1 auto;
161
+ font-size : 18px ;
162
+ letter-spacing : 0 ;
163
+ line-height : 26px ;
164
+ }
165
+
166
+
167
+ /* Images below */
168
+ # x10-image {
169
+ background-image : url (/img/x10-icon.png);
170
+ }
171
+
172
+ # logo-arva {
173
+ background-image : url (/img/logo-arva.png);
174
+ }
175
+
176
+ @media only screen and (-webkit-min-device-pixel-ratio : 2 ) {
177
+ # x10-image {
178
+ background-image : url (/img/x10-icon@2x.png);
179
+ }
180
+
181
+ # logo-arva {
182
+ background-image : url (/img/logo-arva@2x.png);
183
+ }
184
+ }
0 commit comments