-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
156 lines (132 loc) · 3.37 KB
/
code.html
File metadata and controls
156 lines (132 loc) · 3.37 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
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
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Progresso</title>
<style>
body {
margin: 0;
font-family: 'Georgia', serif;
color: #ffffff;
background: url('Casual Office or Café Gathering.jpeg') no-repeat center center/cover;
min-height: 110vh;
display: flex;
flex-direction: column;
}
.overlay {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background-color: rgba(236, 226, 208, 0.5); /* adjust opacity here */
z-index: -1;
}
.navbar {
background-color: rgba(88, 44, 77,0.9);
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items:flex-start ;
transition: background-color 0.5s ease;
}
.navbar:hover {
background-color: rgba(88, 44, 77);
}
.navbar h1 {
margin: 0;
font-size: 1.25rem;
color: #fff;
font-family:'Noto Serif';
}
.navbar a {
color: #fff;
text-decoration: none;
font-family:'Noto Serif';
font-size: 1.25rem;
transition: all 0.5s ease;
}
.navbar a:hover {
transform: scale(1.2);
}
.main {
flex-grow: 1;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.main h2 {
font-size:5rem;
color: rgba(88, 44, 77,0.6);
margin: 0;
position: absolute;
top: 3rem;
left: 2rem;
}
.main p.subtitle {
font-size:1.5rem;
margin-top: 0.5rem;
color: rgba(88, 44, 77,0.6);
position: absolute;
top: 8rem;
left: 2rem;
}
.main .button {
position: absolute;
top: 7rem;
right: 7.5rem;
background-color: rgba(88, 44, 77);
color: #f1e5f4 ;
padding: 0.75rem 2rem;
border: none;
border-radius: 8px;
font-size: 20px;
font-weight: bold;
cursor: pointer;
height:45px;
width:250px;
transition: background-color 0.5s ease;
}
.main .button:hover {
background-color: rgba(88, 44, 77, 0.4);
color: black;
}
.description {
padding: 2rem;
background-color: rgba(88, 44, 77, 0.5);
color: #f1e5f4;
font-size: 1rem;
text-align: center;
margin-top: 2rem;
transition: background-color 0.5s ease;
}
.description:hover {
background-color: rgba(88, 44, 77);
}
</style>
</head>
<body>
<div class="background">
<div class="overlay"></div>
</div>
<div class="navbar">
<h1>PROGRESSO !</h1>
<a href="#">Sign In</a>
</div>
<div class="main">
<h2>PROGRESSO</h2>
<p class="subtitle">Guiding Your Project to Completion.</p>
<a href="auth.html">
<button class="button">Get started</button>
</a>
</div>
<div class="description">
<p>The ultimate platform to monitor, manage, and evaluate final year projects with ease. Whether you're a student, guide, or evaluator, Progresso provides real-time progress tracking, milestone submissions, assessment tools, and insightful reports — all in one place. Simplify your project journey from proposal to completion with clarity and collaboration.</p>
</div>
</body>
</html>