-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
101 lines (96 loc) · 2.32 KB
/
home.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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<link rel="icon" href="https://drive.google.com/uc?export=view&id=1wAy7j2uB-QI6Mkg8iDYlUnjCYAXCGk_j">
<title>Adminis Stikubank</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #ff9a9e, #fad0c4);
color: #333;
padding-top: 120px; /* Adjusted for the navbar height */
text-align: center;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: maroon;
padding: 10px 0;
text-align: center;
color: #fff;
font-size: 24px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.content {
margin-top: 100px; /* Margin to center the dashboard */
}
.dashboard {
font-size: 28px;
color: maroon;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.welcome-message {
font-size: 42px;
margin-top: 20px;
color: maroon;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.button-container {
margin-top: 60px;
}
.btn {
padding: 12px 24px;
font-size: 20px;
margin: 0 15px;
border: 2px solid maroon;
border-radius: 25px;
cursor: pointer;
background-color: maroon;
color: #fff;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #8b0000;
}
.footer {
width: 100%;
background-color: rgba(128, 0, 0, 0.8);;
color: #fff;
text-align: center;
padding: 5px 0;
position: fixed;
bottom: 0;
left: 0;
}
.footer-text {
float: left;
margin-left: 20px;
}
.footer-iconTop {
float: right;
}
</style>
</head>
<body>
<div class="navbar">ADMINISTRATIF FTII UNIVERSITAS STIKUBANK</div>
<div class="content">
<div class="dashboard">Admin Dashboard</div>
<div class="welcome-message">Halo! Selamat Datang!</div>
<div class="button-container">
<a href="tampil-data.php" class="btn">EDIT INFORMASI</a>
<a href="buat-akun.html" class="btn">BUAT AKUN</a>
</div>
</div>
<!-- footer -->
<footer class="footer">
<div class="footer-text">
<p>Copyright © 2023 by Salsa E | 22.01.53.0047 | All Rights Reserved.</p>
</div>
</footer>
</body>
</html>