-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (59 loc) · 912 Bytes
/
style.css
File metadata and controls
70 lines (59 loc) · 912 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #eee;
}
h1 {
font-size: 48px;
margin-bottom: 12px;
}
input {
margin-bottom: 48px;
padding: 4px 8px;
border-radius: 8px;
border-color: black;
border-width: 1px;
}
a {
margin-top: 12px;
}
p {
margin-top: 4px;
}
p span:first-child {
font-weight: bold;
}
img#profile-image {
border-radius: 100%;
width: 300px;
height: 300px;
}
#name {
font-size: 32px;
margin-top: 12px;
margin-bottom: 8px;
}
#bio {
font-weight: normal;
margin-bottom: 24px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 12px;
padding: 44px;
background-color: #fff;
text-align: center;
width: 100%;
max-width: 400px;
}