forked from phobal/ivideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.global.css
52 lines (47 loc) · 967 Bytes
/
app.global.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
/*
* @NOTE: Prepend a `~` to css file paths that are in your node_modules
* See https://github.com/webpack-contrib/sass-loader#imports
*/
@import "~font-awesome/css/font-awesome.css";
@import "~rc-menu/assets/index.css";
/* @import "~antd/lib/style/index.css"; */
@import '~rc-select/assets/index.css';
* {
margin: 0;
padding: 0;
}
body {
position: relative;
color:#000;
height: 100vh;
/* background-color: #232c39; */
/* background-image: linear-gradient(45deg, rgba(0, 216, 255, 0.5) 10%, rgba(0, 1, 127, 0.7)); */
font-family: Arial, Helvetica, Helvetica Neue, serif;
overflow-y: hidden;
}
h2 {
margin: 0;
font-size: 2.25rem;
font-weight: bold;
letter-spacing: -0.025em;
color: #fff;
}
p {
font-size: 24px;
}
li {
list-style: none;
}
a {
color: white;
opacity: 0.75;
text-decoration: none;
}
a:hover {
opacity: 1;
text-decoration: none;
cursor: pointer;
}
.rc-select-dropdown-menu {
max-height: 400px;
}