-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeveloper.html
More file actions
137 lines (136 loc) · 3.86 KB
/
developer.html
File metadata and controls
137 lines (136 loc) · 3.86 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
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web UI</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f8f8f8;
}
.sidebar {
width: 200px;
background-color: #ffffff;
border-right: 1px solid #ddd;
position: fixed;
top: 0;
bottom: 0;
padding-top: 20px;
}
.sidebar a {
display: flex;
align-items: center;
text-decoration: none;
color: #333;
padding: 15px 20px;
font-size: 18px;
}
.sidebar a:hover {
background-color: #f0f0f0;
}
.sidebar img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.content {
margin-left: 200px;
padding: 20px;
}
.header {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 20px;
}
.project-card {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.project-card img {
width: 60px;
height: 60px;
margin-bottom: 10px;
}
.project-card .title {
font-size: 16px;
margin-bottom: 5px;
}
.project-card .update-info {
font-size: 14px;
color: #666;
}
.search-bar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.search-bar input {
padding: 10px;
font-size: 16px;
width: calc(100% - 50px);
border: 1px solid #ddd;
border-radius: 8px;
}
.search-bar img {
width: 24px;
height: 24px;
margin-left: 10px;
}
/* New styles for face and introduction */
.developer-info {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.developer-info img {
width: 150px; /* Larger width */
height: 150px; /* Larger height */
border-radius: 50%;
margin-right: 20px;
}
.developer-info .intro {
font-size: 16px;
color: #555;
}
</style>
</head>
<body>
<div class="sidebar">
<a href="games.html" class="active">
<img src="games.png" alt="Games"> Games
</a>
<a href="controller.html">
<img src="game.png" alt="Controller"> Controller
</a>
<a href="developer.html">
<img src="dev.png" alt="Updates"> developer
</a>
</div>
<div class="content">
<!-- Developer Screen -->
<div id="developer.png">
<div class="header">Developer</div>
<!-- Developer Info Section -->
<div class="developer-info">
<img src="face.png" alt="Developer Face"> <!-- Add a developer's face image -->
<div class="intro">
<p>Hello, I'm sean. I specialize in web development and enjoy creating user-friendly applications. My goal is to build intuitive, interactive websites that enhance user experience.</p>
</div>
</div>
<!-- Add more project cards as needed -->
</div>
</div>
</div>
</body>
</html>