-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlpage.css
93 lines (77 loc) · 1.82 KB
/
lpage.css
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
body {
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif, sans-serif;
background-image: url('bground.jpg');
background-size: cover;
height: 100dvh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
}
/* .landing-page {
background: url('icon.jpg') top left no-repeat, url('logotxt.jpg') bottom right no-repeat;
background-size: auto, auto;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
} */
.landing-content{
font-size: 36px;
}
.top-right {
position: absolute;
top: 20px;
right: 20px;
}
.login-btn,
.signup-btn {
padding: 5px 10px;
margin-left: 10px;
background-color: #333;
color: white;
text-decoration: none;
border-radius: 5px;
}
.landing-content {
text-align: center;
color: white;
margin-top: 20px;
}
.explore-btn {
display: inline-block;
padding: 10px 20px;
background-color: #FFD700;
color: #000;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
font-weight: bold;
transition: background-color 0.3s;
}
.explore-btn:hover {
background-color: #FFA500;
}
.login-btn,
.signup-btn {
padding: 10px 20px;
margin-left: 10px;
background-color: #000; /* Green color */
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 16px; /* Larger font size */
border: 2px solid #000000; /* Border color same as background */
transition: background-color 0.3s, color 0.3s, border-color 0.3s;
text-color: #000000;
}
.login-btn:hover,
.signup-btn:hover {
background-color: #000; /* Darker green on hover */
border-color: #000000; /* Darker green on hover */
}