-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (72 loc) · 2.05 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Ossama Mehmood | Calculator</title>
</head>
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="Img\favicon\fav.png"/>
<!-- Scroll Bar -->
<style>
body {
/* overlay scrollbar to transparent */
overflow: overlay;
}
::-webkit-scrollbar {
/* rounded thumb size : set as 20px */
width: 15px;
background-color: transparent;
}
::-webkit-scrollbar-track {
/* scroll bar traparent : initalizing colorless & border radius as zero */
border-radius: 0px;
}
::-webkit-scrollbar-thumb {
/* rounded thumb : Border Radius */
border-radius: 20px;
/* height of thumb */
height: 40px;
/* thumb color */
background-color:rgb(179,0,255); background: linear-gradient(90deg, rgba(179,0,255,1) 5%, rgba(231,0,255,1) 50%, rgba(255,0,254,1) 95%);
}
/* thumb hover color */
::-webkit-scrollbar-thumb:hover {
background-color:rgb(179,0,255); background: linear-gradient(-90deg, rgba(179,0,255,1) 0%, rgba(231,0,255,1) 51%, rgba(255,0,254,1) 100%);
}
</style>
<!-- Scroll Bar Ended -->
<!-- Calculator Section Started -->
<body>
<div class="greetings">
<span>C</span>
<span>A</span>
<span>L</span>
<span>C</span>
<span>U</span>
<span>L</span>
<span>A</span>
<span>T</span>
<span>O</span>
<span>R</span>
</div>
<div class="description">
<span>Numbers Never Lie, Neither Do You!</span>
</div>
<div class="button">
<button>
<a href="app.html">Get Started</a>
</button>
</div>
<div id="cite">
<h6>Designed by
<a href="https://ossamamehmood.github.io">
ossamamehmood
</a>
</h6>
</div>
</body>
<!-- Calculator Section Ended -->
</html>