Skip to content

Commit dbae5e1

Browse files
committed
Add folder with style files
1 parent 6048ec7 commit dbae5e1

6 files changed

Lines changed: 699 additions & 0 deletions

File tree

assets/css/bootstrap.min.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style.css

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
2+
3+
* {
4+
box-sizing: border-box;
5+
}
6+
7+
body {
8+
margin: 0;
9+
font-family: 'Inter', sans-serif;
10+
background: linear-gradient(135deg, #667eea, #764ba2);
11+
display: flex;
12+
justify-content: center;
13+
align-items: center;
14+
height: 100vh;
15+
}
16+
17+
.login-container {
18+
background: #ffffff;
19+
padding: 40px;
20+
border-radius: 12px;
21+
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
22+
width: 100%;
23+
max-width: 400px;
24+
text-align: center;
25+
}
26+
27+
.login-container h2 {
28+
margin-bottom: 30px;
29+
color: #333;
30+
}
31+
32+
.login-container input {
33+
width: 100%;
34+
padding: 12px 15px;
35+
margin: 10px 0;
36+
border: 1px solid #ccc;
37+
border-radius: 8px;
38+
font-size: 16px;
39+
}
40+
41+
.login-container button {
42+
width: 100%;
43+
padding: 12px;
44+
margin-top: 20px;
45+
background: #667eea;
46+
border: none;
47+
border-radius: 8px;
48+
color: white;
49+
font-size: 16px;
50+
font-weight: 600;
51+
cursor: pointer;
52+
transition: background 0.3s ease;
53+
}
54+
55+
.login-container button:hover {
56+
background: #5a67d8;
57+
}
58+
59+
.login-container a {
60+
display: block;
61+
margin-top: 15px;
62+
color: #764ba2;
63+
text-decoration: none;
64+
font-size: 14px;
65+
}
66+
67+
.login-container a:hover {
68+
text-decoration: underline;
69+
}

assets/js/bootstrap.bundle.min.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/jquery.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)