-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39aee41
commit 6490d21
Showing
4 changed files
with
85 additions
and
10 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
apps/hadirmu/templates/temp1-undangan-wedding/.vscode/settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
} | ||
"liveServer.settings.port": 5502 | ||
} |
Binary file not shown.
48 changes: 48 additions & 0 deletions
48
apps/hadirmu/templates/temp1-undangan-wedding/css/awal.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
.home_2 .copyright p { | ||
margin: 0; | ||
} | ||
#start-page { | ||
background-color: #fff; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
text-align: center; | ||
padding: 20px; /* Menambahkan padding jika diperlukan */ | ||
} | ||
|
||
.start-content { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 40px; | ||
} | ||
|
||
.start-content h1 { | ||
font-size: 48px; | ||
margin-top: 30px; | ||
line-height: 1; /* Menambahkan line-height untuk spasi antara baris */ | ||
} | ||
|
||
.start-content p { | ||
font-size: 24px; | ||
margin-top: 20px; | ||
line-height: 1.5; /* Menambahkan line-height untuk spasi antara baris */ | ||
} | ||
|
||
.start-content button { | ||
background-color: #e95b5b; | ||
color: #fff; | ||
border: none; | ||
padding: 15px 25px; | ||
font-size: 18px; | ||
cursor: pointer; | ||
border-radius: 5px; /* Menambahkan sudut membulat pada tombol */ | ||
transition: background-color 0.3s ease; /* Menambahkan transisi pada warna latar belakang */ | ||
} | ||
|
||
.start-content button:hover { | ||
background-color: #ff5c5c; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters