File tree Expand file tree Collapse file tree 6 files changed +204
-69
lines changed Expand file tree Collapse file tree 6 files changed +204
-69
lines changed Original file line number Diff line number Diff line change 1
1
import { defineConfig } from 'astro/config'
2
2
3
3
// https://astro.build/config
4
- export default defineConfig ( { } )
4
+
5
+ export default defineConfig ( {
6
+ vite : {
7
+ css : {
8
+ transformer : "lightningcss" ,
9
+ } ,
10
+ } ,
11
+ } )
12
+
13
+
Original file line number Diff line number Diff line change 10
10
"astro" : " astro"
11
11
},
12
12
"dependencies" : {
13
- "astro" : " ^4.10.2"
13
+ "astro" : " ^4.10.2" ,
14
+ "lightningcss" : " ^1.25.1"
14
15
}
15
16
}
Original file line number Diff line number Diff line change 1
1
# support-plans-slider {
2
2
margin : 200px auto 150px ;
3
- }
4
3
5
- @media (max-width : 550px ) {
6
- # support-plans-slider {
4
+ @media (max-width : 550px ) {
7
5
max-width : 98% ;
8
6
margin : 170px auto 120px ;
9
7
}
26
24
margin-top : 15px ;
27
25
background : linear-gradient (32deg , # 03a9f4, transparent) # f441a5 ;
28
26
transition : background-color 1s ;
29
- }
30
27
31
- .plan-link : hover ,
32
- .plan-link : focus {
33
- background-color : # fdb900 ;
28
+ & : hover ,
29
+ & : focus {
30
+ background-color : # fdb900 ;
31
+ }
34
32
}
35
33
34
+
35
+
36
36
/* noUI slider customizations */
37
37
38
38
.noUi-connects {
45
45
font-size : 30px ;
46
46
transition : font-size 0.3s ease;
47
47
cursor : pointer;
48
- }
49
48
50
- .noUi-value .active {
51
- font-size : 45px ;
49
+ & .active {
50
+ font-size : 45px ;
51
+ }
52
52
}
53
53
54
- .noUi-marker-horizontal .noUi-marker-large {
55
- height : 5px ;
56
- }
54
+ .noUi-marker-horizontal {
55
+ & .noUi-marker-large {
56
+ height : 5px ;
57
+ }
57
58
58
- .noUi-marker-horizontal .noUi-marker {
59
- margin-left : 0 ;
60
- width : 1px ;
59
+ & .noUi-marker {
60
+ margin-left : 0 ;
61
+ width : 1px ;
62
+ }
61
63
}
62
64
63
65
.noUi-tooltip {
64
66
border-color : # ccc ;
65
67
border-radius : 10px ;
66
68
padding : 10px ;
67
- }
68
69
69
- . noUi-tooltip .first {
70
- left : 0 ;
71
- transform : unset;
72
- }
70
+ & .first {
71
+ left : 0 ;
72
+ transform : unset;
73
+ }
73
74
74
- .noUi-tooltip .last {
75
- right : 0 ;
76
- left : unset;
77
- transform : unset;
75
+ & .last {
76
+ right : 0 ;
77
+ left : unset;
78
+ transform : unset;
79
+ }
78
80
}
79
-
Original file line number Diff line number Diff line change 1
1
body {
2
- padding-bottom : 100px ;
3
2
line-height : 1.5 ;
4
3
font-size : 17px ;
5
4
-webkit-font-smoothing : antialiased;
8
7
color : # 000 ;
9
8
}
10
9
11
- @media (max-width : 550px ) {
12
- body {
13
- padding-bottom : 40px ;
14
- }
15
- }
16
-
17
10
.container {
18
11
max-width : 700px ;
19
12
margin-left : auto;
46
39
margin-top : 1em ;
47
40
}
48
41
49
- p a {
50
- color : # 333 ;
51
- font-weight : bold ;
52
- text-decoration : none ;
53
- box-shadow : 0 1 px 0 # adc2ee ;
54
- transition : box-shadow 200 ms ease 0 s ;
55
- }
42
+ p {
43
+ a {
44
+ color : # 333 ;
45
+ font-weight : bold ;
46
+ text-decoration : none ;
47
+ box-shadow : 0 1 px 0 # adc2ee ;
48
+ transition : box-shadow 200 ms ease 0 s ;
56
49
57
- p a : hover {
58
- box-shadow : 0 2px 0 # adc2ee ;
50
+ & : hover {
51
+ box-shadow : 0 2px 0 # adc2ee ;
52
+ }
53
+ }
59
54
}
60
55
61
56
strong {
79
74
}
80
75
81
76
.footer {
82
- margin-top : 3em ;
77
+ margin-top : 6em ;
78
+ margin-bottom : 4em ;
83
79
display : flex;
84
80
justify-content : space-evenly;
85
- }
86
81
87
- .footer a {
88
- color : # 777 ;
89
- text-decoration : none;
82
+ a {
83
+ color : # 777 ;
84
+ text-decoration : none;
85
+ }
90
86
}
91
87
92
88
.logo {
@@ -105,4 +101,24 @@ hr {
105
101
padding : 14px ;
106
102
font-weight : bold;
107
103
overflow-x : auto;
108
- }
104
+ }
105
+
106
+ .quick-start-button {
107
+ /*display: block;*/
108
+ text-decoration : none;
109
+ color : white;
110
+ font-weight : bold;
111
+ letter-spacing : 0.05rem ;
112
+ font-size : 15px ;
113
+ border-radius : 20px ;
114
+ padding : 6px 16px ;
115
+ margin-top : 15px ;
116
+ background : linear-gradient (32deg , # 03a9f4, transparent) # f441a5 ;
117
+ transition : background-color 1s ;
118
+
119
+ & : hover ,
120
+ & : focus {
121
+ background-color : # fdb900 ;
122
+ }
123
+ }
124
+
You can’t perform that action at this time.
0 commit comments