-
Notifications
You must be signed in to change notification settings - Fork 0
/
portal.php
48 lines (42 loc) · 1.03 KB
/
portal.php
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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<style type="text/css">
.li, .li2 {
float: left;
overflow: auto;
padding: 5px ;
}
.li, .a2, .li2 {
display: block;
color: white;
font-size: 14px;
font-family: "Yu Gothic UI Light";
text-decoration: none;
}
.li{
/*margin: 18px 0px 0px 8px;*/
position: absolute;
bottom: 8px;
right: 70px;
border-right: 1px solid #f2f2f2;
}
.li:last-child{
border-right: none;
}
.li2 {
position: absolute;
bottom: 8px;
right: 16px;
}
.a2:hover:not(.logo) {
border-bottom: 1.5px solid #2a8048;
}
</style>
</head>
<body>
<li class="li"><a class="a2" href="create_account.php">Sign Up</a></li>
<li class="li2"><a class="a2" href="login_form.php">Sign In</a></li>
</body>
</html>