1
+ @import url (https://fonts.googleapis.com/css?family=Dosis:200, 300 , 400 , 500 , 600 , 700 , 800 );
2
+ * {
3
+ box-sizing : border-box;
4
+ }
5
+
6
+ body {
7
+ font-family : Arial, Helvetica, sans-serif;
8
+ overflow-x : hidden;
9
+ -ms-overflow-style : none; /* Internet Explorer 10+ */
10
+ scrollbar-width : none;
11
+ }
12
+
13
+ body ::-webkit-scrollbar {
14
+ display : none; /* Safari and Chrome */
15
+ }
16
+
17
+
18
+ .headder {
19
+ z-index : 1 ;
20
+ width : 100vw ;
21
+ background : rgb (240 , 240 , 240 );
22
+ border : 1px solid black;
23
+ padding-top : 1rem ;
24
+ padding-bottom : 1rem ;
25
+ margin-bottom : 3rem ;
26
+ text-align : center;
27
+ margin-top : -0.5rem ;
28
+ margin-left : -0.5rem ;
29
+ position : sticky;
30
+ top : 0 ;
31
+ }
32
+
33
+
34
+ .headder span {
35
+ z-index : 1 ;
36
+ height : fit-content ;
37
+ font-family : 'Dosis' ;
38
+ font-weight : 800 ;
39
+ text-align : center;
40
+ font-size : 5vh ;
41
+ border : 1px solid black;
42
+ background : linear-gradient (to right, # 30CFD0 0% , # 330867 100% );
43
+ -webkit-background-clip : text;
44
+ -webkit-text-fill-color : transparent;
45
+ -webkit-text-stroke-width : 1px ;
46
+ -webkit-text-stroke-color : black;
47
+ overflow : hidden;
48
+
49
+ }
50
+
51
+
52
+
53
+
54
+ /* Float four columns side by side */
55
+ .column {
56
+ float : left;
57
+ width : 25% ;
58
+ padding : 0 2.5rem ;
59
+ padding-bottom : 1rem ;
60
+ }
61
+
62
+
63
+ /* Remove extra left and right margins, due to padding in columns */
64
+ .row {margin : 0 ;}
65
+
66
+ /* Clear floats after the columns */
67
+ .row : after {
68
+ content : "" ;
69
+ display : table;
70
+ clear : both;
71
+ }
72
+
73
+ /* Style the counter cards */
74
+ .card {
75
+ box-shadow : 0 4px 8px 0 rgba (0 , 0 , 0 , 0.2 ); /* this adds the "card" effect */
76
+ padding : 16px ;
77
+ text-align : center;
78
+ background : rgb (0 , 212 , 255 );
79
+ background : radial-gradient (circle, rgb (255 , 255 , 255 ) 0% , rgb (243 , 117 , 117 ) 50% , rgb (76 , 128 , 223 ) 100% );
80
+ border : 2px solid gold;
81
+ border-radius : 1rem ;
82
+ height : 20rem ;
83
+ width : 15rem ;
84
+ line-height : 5rem ;
85
+ }
86
+
87
+ .gitLink
88
+ {
89
+ margin-top : 5rem ;
90
+ }
91
+ .card form {
92
+ padding-top : 5.8rem ;
93
+ display : flex;
94
+ justify-content : center;
95
+ justify-items : center;
96
+ text-justify : auto;
97
+ word-wrap : break-word;
98
+ }
99
+
100
+
101
+ .button-29 {
102
+ appearance : none;
103
+ background-image : radial-gradient (100% 100% at 100% 0 , # 5adaff 0 , # 5468ff 100% );
104
+ border : 0 ;
105
+ border-radius : 6px ;
106
+ box-shadow : rgba (45 , 35 , 66 , .4 ) 0 2px 4px , rgba (45 , 35 , 66 , .3 ) 0 7px 13px -3px , rgba (58 , 65 , 111 , .5 ) 0 -3px 0 inset;
107
+ box-sizing : border-box;
108
+ color : # fff ;
109
+ cursor : pointer;
110
+ display : inline-block;
111
+ font-family : "JetBrains Mono" , monospace;
112
+ height : auto;
113
+ min-height : 50px ;
114
+ width : 100% ;
115
+ justify-content : center;
116
+ line-height : 1 ;
117
+ list-style : none;
118
+ overflow : hidden;
119
+ padding-left : 16px ;
120
+ padding-right : 16px ;
121
+ position : relative;
122
+ text-align : center;
123
+ text-decoration : none;
124
+ transition : box-shadow .15s , transform .15s ;
125
+ user-select : none;
126
+ -webkit-user-select : none;
127
+ touch-action : manipulation;
128
+ white-space : initial;
129
+ will-change : box-shadow, transform;
130
+ font-size : 18px ;
131
+ }
132
+
133
+
134
+
135
+ .button-29 : focus {
136
+ box-shadow : # 3c4fe0 0 0 0 1.5px inset, rgba (45 , 35 , 66 , .4 ) 0 2px 4px , rgba (45 , 35 , 66 , .3 ) 0 7px 13px -3px , # 3c4fe0 0 -3px 0 inset;
137
+ }
138
+
139
+ .button-29 : hover {
140
+ box-shadow : rgba (45 , 35 , 66 , .4 ) 0 4px 8px , rgba (45 , 35 , 66 , .3 ) 0 7px 13px -3px , # 3c4fe0 0 -3px 0 inset;
141
+ transform : translateY (-2px );
142
+ }
143
+
144
+
145
+ .button-29 : active {
146
+ box-shadow : # 3c4fe0 0 3px 7px inset;
147
+ transform : translateY (2px );
148
+ }
149
+
150
+
151
+
152
+ /* Responsive columns - one column layout (vertical) on small screens */
153
+ @media screen and (max-width : 600px ) {
154
+ .column {
155
+ width : 100% ;
156
+ display : block;
157
+ margin-bottom : 20px ;
158
+ }
159
+ }
0 commit comments