-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
127 lines (121 loc) · 4.18 KB
/
Copy pathprofile.html
File metadata and controls
127 lines (121 loc) · 4.18 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>BITS bids: Profile</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
.bod{
background-color: rgb(255, 252, 247);
overflow-y: auto;
overflow-x: auto;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.text{
font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
padding-left: 3px;
padding-right: 3px;
color: rgb(255, 252, 247);
font-size: 40px;
margin-right: 0;
margin-left: 40px;
font-weight: 500;
border: none;
background-color: black;
vertical-align: middle;
margin-top: 5px;
margin-bottom: 10px;
}
.navbar{
overflow: hidden;
display: block;
height: 65px;
top: 0;
left:0;
right: 0;
margin:0;
padding:0;
background-color: black;
margin-bottom: 0px;
}
.buy, .sell, .logout, .prof{
font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
height: 63px;
width: 80px;
color: rgb(118, 194, 229);
font-size: 19px;
margin-right: 0px;
font-weight: 400;
border: none;
background-color: black;
vertical-align: middle;
margin-top: 0px;
}
.buy:hover, .logout:hover, .sell:hover, .prof:hover{
border-bottom: 3px solid rgb(118, 194, 229);
cursor: pointer;
font-weight: 500;
}
.details{
margin-top: 50px;
padding-left: 100px;
padding-right: 100px;
margin-right: 0px;
}
.name, .em, .bal{
font-family: Montserrat, 'Times New Roman', Times, serif;
font-weight: 500;
font-size: 30px;
padding-top: 40px;
}
.deets{
resize: none;
width: 580px;
height: 40px;
font-family: Montserrat, 'Times New Roman', Times, serif;
font-size: 25px;
padding-top: 5px;
padding-left: 5px;
padding-bottom: 2px;
overflow: hidden;
}
.addbal{ text-align: center;
display:block;
font-size: 23px;
font-weight: 500;
margin-top: 30px;
padding-bottom: 10px;
padding-top: 10px;
padding-left: 15px;
padding-right: 15px;
border-radius: 50px;
border: none;
background-color: rgb(164, 164, 255);
font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
}
.addbal:hover{
cursor: pointer;
opacity: 0.8;
}
</style>
</head>
<body class="bod">
<div class="navbar">
<button class="text" style="display: inline-block; margin-right: 0;">BITS bids</button>
<a href="http://127.0.0.1:5500/Page2.html"><button class="buy" style="margin-left: 500px; ">Buyer</button></a>
<a href="http://127.0.0.1:5500/seller(new).html"><button class="sell" style="margin-left: 30px; ">Seller</button></a>
<a href="http://127.0.0.1:5500/profile.html"><button class="prof" style="margin-left: 30px; ">Profile</button></a>
<a href="http://127.0.0.1:5500/Firstpage(final).html"><button class="logout" style="margin-left: 30px;">Log Out</button></a>
</div>
<div style="margin-right: 0px">
<div class="details" style=" padding-bottom: 5px;">
<label for="Name" class="name">Name: </label><textarea readonly class="deets"></textarea><br><br><br>
<label for="email" class="em">Email: </label><textarea readonly class="deets"></textarea><br><br><br>
<label for="number" class="bal">Current Balance (BITScoin): </label><textarea readonly class="deets" style="width: 90px;" ></textarea><br><br>
<button class="addbal">Add Balance</button>
</div></div>
</body>
</html>