-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
117 lines (98 loc) · 1.61 KB
/
styles.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@font-face {
font-family: 'Intro';
src: url('/fonts/IntroDemo-BlackCAPS.woff2') format('woff2'),
url('/fonts/IntroDemo-BlackCAPS.woff') format('woff');
font-weight: 900;
font-style: normal;
font-display: swap;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
/* scroll-behavior: smooth; */
font-family: 'Roboto', sans-serif;
}
body {
width: 100%;
margin: 0;
padding: 0;
/* scroll-behavior: smooth; */
overflow-x: hidden;
}
a {
text-decoration: none;
color: black;
}
ul,
li {
margin: 0;
padding: 0;
list-style-type: none;
}
button:focus,
input:focus {
outline: none;
}
button {
border: none;
background: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
}
/* custom scroll bar */
::-webkit-scrollbar {
width: 15px;
}
::-webkit-scrollbar-track {
border-radius: 5px;
}
::-webkit-scrollbar-thumb {
background: rgb(60, 60, 60);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #000;
}
.container {
width: 100%;
max-width: 1200px;
padding: 0 25px;
margin: auto;
box-sizing: border-box;
position: relative;
overflow: hidden;
}
.exclamation-icon {
color: rgb(196, 0, 0);
line-height: 0;
font-size: 2rem;
position: relative;
left: -7px;
top: 0px;
}
.spinner {
display: block;
margin-top: 100px;
}
.success-icon {
color: green;
line-height: 0;
font-size: 2rem;
position: relative;
left: -7px;
top: 0px;
}
.ant-carousel .slick-list .slick-slide > div > div {
text-align: center;
}
a span {
color: #000;
}