-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps.html
145 lines (123 loc) · 4.2 KB
/
apps.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== BOXICONS ===============-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="styles.css">
<title>Shade Studio Ultra</title>
<style>
.body {
background-image: url("Rainbow.jpg");
}
.circle-popup {
position: fixed;
bottom: 30px;
left: 30px;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #e74c3c;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 9999;
}
.chat-icon {
position: fixed;
bottom: 30px;
left: 30px;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #e74c3c;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
z-index: 9999;
}
.popup-content {
position: sticky;
top: 0px;
left: 0%;
right: 10%;
width: 100%;
height: 50%;
display: block;
z-index: 99999;
border-radius: 5px;
resize: block;
opacity: 60%;
}
.close-btn {
position: absolute;
top: 10px;
left: 50px
right: 10px;
width: 20px;
height: 20px;
background-color: #e74c3c;
cursor: pointer;
}
iframe {
width: 100%;
height: 100%;
border-radius: 0%;
resize: block;
}
</style>
</head>
<body>
<!--=============== HEADER ===============-->
<header class="header" id="header">
<nav class="nav container">
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">
<i class='bx bx-home-alt nav__icon'></i>
<span class="nav__name">Home</span>
</a>
</li>
<li class="nav__item">
<a href="apps.html" class="nav__link active-link">
<i class='bx bx-grid-alt nav__icon'></i>
<span class="nav__name">Apps</span>
</a>
</li>
<li class="nav__item">
<a href="music.html" class="nav__link">
<i class='bx bx-music nav__icon'></i>
<span class="nav__name">Music</span>
</a>
</li>
<li class="nav__item">
<a href="search.html" class="nav__link">
<i class='bx bx-search nav__icon'></i>
<span class="nav__name">Search</span>
</a>
</li>
</ul>
</div>
<img src="assets/img/perfil.png" alt="" class="nav__img">
</nav>
</header>
<main>
<!--=============== HOME ===============-->
<!--=============== ABOUT ===============-->
<!--=============== HOME ===============-->
<section class="container section section__height" id="home">
<h2 class="section__title">My Apps</h2>
<iframe src="https://shadeappworld.github.io/notes/smagic.html" draggable="true" width="100%" height="100%" opacity="80%"></iframe>
</div>
</section>
</main>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>