-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstylesheet.css
116 lines (100 loc) · 2.09 KB
/
stylesheet.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
@import url("https://fonts.googleapis.com/css?family=Roboto");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap");
/* Setting scrollbar width */
::-webkit-scrollbar {
width: 25px;
}
/* Scrollbar Track */
::-webkit-scrollbar-track {
background: transparent;
}
/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
/* background: #8D74E1; */
background: linear-gradient(15deg,#5a3fb2 0%,#8D74E1 100%);
border-radius: 10px;
}
/* Scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #6852b3;
}
body {
max-width: 100%;
background: #03022D;
}
a {
text-decoration: none;
}
#TopBox {
color: white;
font-family: "Roboto",sans-serif;
}
#temp {
width: 0;
height: 0;
opacity: 0;
}
.textBox {
overflow-wrap: break-word;
word-break: break-all;
word-wrap: break-word;
white-space: pre-wrap;
margin: 40px;
color: white;
font-family: "Montserrat",sans-serif;
}
.btn {
border: none;
border-radius: 49px;
background: linear-gradient(45deg, #6964DE, #FCA6E9) no-repeat;
padding: 1rem 2rem;
margin: .25rem;
color: white;
cursor: pointer;
position: relative;
font-family: "Roboto",sans-serif;
font-weight: 600;
letter-spacing: 1px;
bottom: 20px;
transition: transform .2s ease-in;
}
.btn > a {
color: inherit;
}
.btn:hover {
transform: scale(1.1);
}
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 140px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 150%;
left: 50%;
margin-left: -75px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}