-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathstyle.css
83 lines (73 loc) · 1.29 KB
/
style.css
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
/* General styling */
body {
font-family: 'Arial', sans-serif;
background-color: #fafafa;
margin: 0;
padding: 0;
}
/* Top styling */
.top {
background-color: #ffffff;
border-bottom: 1px solid #dbdbdb;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
width: 60px;
height: 60px;
margin-right: 10px;
}
h1 {
font-size: 24px;
font-weight: bold;
margin: 0;
}
/* Header styling */
.header {
display: flex;
align-items: center;
padding: 20px;
background-color: #ffffff;
border-bottom: 1px solid #dbdbdb;
}
.profile-image {
width: 90px;
height: 90px;
border-radius: 50%;
border: 2px solid #dbdbdb;
margin-right: 20px;
}
button {
padding: 6px 12px;
background-color: #3897f0;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
}
button:hover {
background-color: #3074b0;
}
/* Main image */
.main {
width: 100%;
max-width: 600px;
display: block;
margin: 20px auto;
border-radius: 5px;
border: 1px solid #dbdbdb;
}
/* Text styling */
p {
font-size: 16px;
margin: 10px 20px;
color: #262626;
}
.profile-name {
color: #262626;
font-weight: 500;
}