-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (100 loc) · 3.04 KB
/
index.html
File metadata and controls
113 lines (100 loc) · 3.04 KB
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Salivity</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
header {
margin-bottom: 40px;
}
h1 {
font-size: 4em;
background: linear-gradient(to right, #ff7e5f, #feb47b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
margin: 0;
}
h2 {
font-size: 2.5em;
margin-top: 10px;
color: #f0f0f0;
}
.container {
background-color: rgba(255, 255, 255, 0.1);
padding: 30px 50px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
max-width: 800px;
width: 90%;
}
p {
font-size: 1.2em;
line-height: 1.6;
margin-bottom: 30px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
background-color: rgba(255, 255, 255, 0.15);
margin-bottom: 15px;
padding: 20px;
border-radius: 10px;
text-align: left;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, background-color 0.3s ease;
}
li:hover {
transform: translateY(-5px);
background-color: rgba(255, 255, 255, 0.25);
}
li a {
color: #fff;
text-decoration: none;
font-weight: bold;
font-size: 1.4em;
}
li p {
font-size: 1em;
margin-top: 10px;
margin-bottom: 0;
color: #e0e0e0;
}
li a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Salivity</h1>
<h2>Online Tools</h2>
</header>
<div class="container">
<p>Hello! I'm Salivity, a web developer passionate about creating useful and intuitive online tools. This page serves as a hub for some of my projects, designed to simplify various tasks for developers and users alike. I'm always working on new ideas, so check back often for updates!</p>
<ul>
<li>
<a href="https://salivity.github.io/markdown" target="_blank">Markdown Editor</a>
<p>A simple and efficient online Markdown editor. Write, preview, and convert your Markdown text with ease.</p>
</li>
</ul>
</div>
</body>
</html>