Skip to content

Commit 45edd14

Browse files
committed
Added initial style.css to style the profile.
1 parent 93ac6e3 commit 45edd14

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

index.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<html>
33

44
<head>
5+
<link rel="stylesheet" href="style.css">
56
</head>
67

78
<body>

style.css

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
body {
2+
width: 100%;
3+
margin: 30px;
4+
background-color: antiquewhite;
5+
}
6+
7+
#profile-container{
8+
max-width: 300px;
9+
background-color: white;
10+
border: 1px solid gray;
11+
border-radius: 6px;
12+
}
13+
14+
#profile-image{
15+
width: 100%;
16+
height: auto;
17+
}
18+
19+
#profile-name{
20+
text-align: center;
21+
}

0 commit comments

Comments
 (0)