forked from al3ko/254Vent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (103 loc) · 2.55 KB
/
index.html
File metadata and controls
115 lines (103 loc) · 2.55 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
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>UniVENT</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"/>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #dcd0c0; /* Cream background */
color: #333;
display: flex;
flex-direction: column;
min-height: 100vh;
}
#header {
background-color: #dcd0c0;
padding: 1rem 2rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
#header h1 {
font-size: 2.5rem;
color: #111;
font-weight: 900;
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
margin: 0;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 3rem 2rem;
margin: 3rem auto;
background-color: white;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
max-width: 500px;
width: 90%;
}
.container h2 {
font-size: 2rem;
margin-bottom: 2rem;
text-align: center;
color: #2d3748;
}
.buttons {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
}
.buttons button {
padding: 1rem 2rem;
font-size: 1rem;
background-color: #FFA500; /* Orange */
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
}
.buttons button:hover {
background-color: #e69500;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.container h2 {
font-size: 1.5rem;
}
.buttons {
flex-direction: column;
gap: 1rem;
width: 100%;
}
.buttons button {
width: 100%;
}
}
</style>
</head>
<body>
<header id="header">
<h1>UniVENT</h1>
</header>
<div class="container">
<h2>Welcome to UniVENT</h2>
<div class="buttons">
<button onclick="location.href='/UniVent-Project/login.html'">Log In</button>
<button onclick="location.href='/UniVent-Project/signup.html'">Sign Up</button>
</div>
</div>
</body>
</html>