-
Notifications
You must be signed in to change notification settings - Fork 471
/
Copy pathstyle.css
65 lines (55 loc) · 902 Bytes
/
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
body {
font-family: 'Arial', sans-serif;
background-color: #fafafa;
padding: 50px;
text-align: center;
}
.header {
display: flex;
align-items: center;
padding: 20px;
}
.logo {
width: 100px;
border-radius: 10px;
}
.profile {
width: 120px;
height: 120px;
border-radius: 50%;
}
.name {
font-weight: bold;
font-size: 18px;
display: inline;
padding: 10px;
}
button {
padding: 8px 16px;
border: 1px solid #dbdbdb;
border-radius: 4px;
background-color: #fff;
font-weight: 600;
color: #262626;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #f0f0f0;
}
.followers {
font-weight: normal;
}
p {
margin: 20px 0;
color: #8e8e8e;
}
.main {
width: 100%;
max-width: 600px;
border-radius: 10px;
margin-top: 20px;
}
em {
color: #8e8e8e;
}