forked from SUGAM-ARORA/UniCollab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
89 lines (71 loc) · 1.54 KB
/
index.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
/* Existing CSS styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
.button {
text-decoration: none;
font-size: 14px;
color: #fff;
background: linear-gradient(#ff21bc, #b21783);
padding: 5px 15px;
border-radius: 10px;
text-transform: uppercase;
font-weight: 600;
margin-right: 10px;
cursor: pointer;
transition: background-color 0.3 sec;
}
.button:hover {
background-color: #fff;
border-color: #b21783;
}
.button:hover {
background: rgb(219, 32, 149);
}
.button2:hover {
background: rgb(60, 55, 107);
}
.button2 {
text-decoration: none;
font-size: 14px;
font-weight: bold;
color: #d1d0d5;
border: 2px solid #443b78;
padding: 5px 15px;
border-radius: 10px;
margin: 0px 5px;
transition: background-color 0.3 sec;
}
.button2:hover {
border-color: #b21783;
}
/* Vertical scrollbar */
::-webkit-scrollbar {
width: 7.5px;
}
::-webkit-scrollbar-track {
background: #19162c;
border-radius: 10px;
box-shadow: 0 0 1px 1px #111, inset 0 0 4px rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(#ff21bc, #b21783);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #ff03b3;
}