Skip to content
Snippets Groups Projects
Commit 29d472cf authored by Husnulzaki Wibisono Haryadi's avatar Husnulzaki Wibisono Haryadi
Browse files

Add frame border, modification on profile php ongoing

parent 427c48a2
1 merge request!45OneHundred - 13515005 - Husnulzaki Wibisono Haryadi
.frame { .frame {
width: 600px;
margin: 50px auto; margin: 50px auto;
border-left: 0.5px solid black;
border-right: 0.5px solid black;
} }
.frame h1,h2 { .frame h1,h2 {
...@@ -40,5 +43,11 @@ a:link, a:visited { ...@@ -40,5 +43,11 @@ a:link, a:visited {
} }
a:hover { a:hover {
opacity: 10%; opacity: 0.6%;
} }
\ No newline at end of file
/*.menu {
border: 0.5px solid black;
width: 200px;
float: left;
}*/
\ No newline at end of file
#profile_frame {
height: 550px;
width: 400px;
}
#profile_frame h1 { #profile_frame h1 {
text-align: left; text-align: left;
margin-top: 0; margin-top: 0;
......
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
</div> </div>
<div style="background-color: white; max-width: 600px; margin-left: auto; margin-right: auto"> <div style="background-color: white; max-width: 600px; margin-left: auto; margin-right: auto">
<a href="order/order.php" name="order_link"> <a href="order/order.php" name="order_link">
<div style="background-color: red; width: 200px; float: left"> <div style="background-color: red; width: 200px; float: left">
<h2>Order</h2> <h2>Order</h2>
</div> </div>
</a> </a>
<a href="history/history.php" name="history_link"> <a href="history/history.php" name="history_link">
<div style="background-color: green; width: 200px; float: left"> <div style="background-color: green; width: 200px; float: left">
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<link rel="stylesheet" type="text/css" href="../css/header.css"> <link rel="stylesheet" type="text/css" href="../css/header.css">
</head> </head>
<body> <body>
<div class="frame" id="profile_frame"> <div class="frame">
<div class="header"> <div class="header">
<?php <?php
$user_id = $_GET['id']; $user_id = $_GET['id'];
......
<?php <?php
echo ' echo '
<a href="../order/order.php">ORDER</a> <div style="background-color: white; max-width: 600px; margin-left: auto; margin-right: auto">
<a href="../history/history.php">HISTORY</a> <a href="order/order.php" name="order_link">
<a href="../profile_page/profile.php">PROFILE</a>'; <div style="background-color: red; width: 200px; float: left">
<h2>Order</h2>
</div>
</a>
<a href="history/history.php" name="history_link">
<div style="background-color: green; width: 200px; float: left">
<h2>History</h2>
</div>
</a>
<a href="profile/profile.php" name="profile_link">
<div style="background-color: yellow; width: 200px; float: left">
<h2>My Profile</h2>
</div>
</a>
</div>
';
?> ?>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment