-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (93 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
>
<title>Neu</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<style>
body {
background: #181a21;
padding: 100px;
}
body * {
box-sizing: border-box;
font-family: 'Calibre', sans-serif;
}
.button {
line-height: 60px;
border-radius: 100px;
margin: 10px;
display: inline-block;
height: 60px;
background: linear-gradient(0, #0d0e13, #2b2f3c);
box-shadow: 0px 10px 15px -8px #0d0e13, 0px -10px 15px -8px #2b2f3c;
padding: 2px;
transition: 0.1s all ease-in;
}
.button-inner {
width: 100%;
height: 100%;
line-height: 56px;
background: #181a21;
background: linear-gradient(0, #14151d, #1c1f27);
border-radius: 100px;
box-shadow: inset 0px 10px 10px -20px #0d0e13, inset 0px -10px 10px -20px #2b2f3c;
display: flex;
justify-content: center;
align-items: center;
color: #525767;
font-size: 20px;
padding: 20px;
transition: 0.1s all ease-in;
}
.button-inner:hover {
background: linear-gradient(0, #14151d, #1c1f27);
box-shadow: inset 0px 10px 10px -2px #0d0e13, inset 0px -10px 10px -2px #2b2f3c;
}
.button:hover {
box-shadow: 0px 10px 15px -6px #0d0e13, 0px -10px 15px -6px #2b2f3c;
}
.button i {
color: green;
box-shadow: 0px 10px 10px red;
}
.active {
color: #ea6230;
}
</style>
</head>
<body>
<div class="button">
<div class="button-inner">
<i
class="fas fa-rocket"
style="margin-right: 10px"
></i> Hallo Welt aibdiuwabd iuawbu d
</div>
</div>
<div class="button">
<div class="button-inner">
<i class="fas fa-rocket"></i>
</div>
</div>
<div class="button">
<div class="button-inner">
<i class="fas fa-users active"></i>
</div>
</div>
<div class="button">
<div class="button-inner">
<i class="fas fa-newspaper"></i>
</div>
</div>
<div class="button">
<div class="button-inner">
<i class="fas fa-paper-plane"></i>
</div>
</div>
</body>
</html>