-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
111 lines (96 loc) · 1.63 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
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
body {
font-family: "Helvetica";
background-color: #f5f5f5;
color: #000000;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.header {
margin: 40px 0;
}
.header__avatar {
border-radius: 50%;
}
.header__title {
margin: 30px 0 10px 0;
font-size: 32px;
line-height: 1.2;
font-family: "Helvetica Neue";
}
.header__subtitle {
color: #8f8f8f;
font-size: 16px;
line-height: 1.4;
margin: 0;
}
.links {
width: 350px;
margin-bottom: 40px;
}
.links__header {
font-family: "Helvetica Neue";
font-size: 24px;
line-height: 1.4;
margin: 0 0 15px 0;
}
.links__container {
list-style-type: none;
background: #ffffff;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 20px 20px 10px;
gap: 10px;
flex: none;
order: 1;
flex-grow: 0;
box-sizing: border-box;
margin: 0;
}
.links__link,
.links__title {
font-size: 14px;
font-size: 1.4;
}
.links__link {
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 0px 0px 10px;
gap: 30px;
border-bottom: 1px solid #dadada;
width: 280px;
}
.links__link:last-child {
border-bottom: none;
}
.linsk__link,
.links__link:visited {
text-decoration: none;
color: #e0892b;
}
.links__title {
margin: 0;
min-width: 100px;
}
footer {
margin: 0 0 40px 0;
}
.button-link {
box-sizing: border-box;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px;
width: 320px;
background: #fb9d19;
border-radius: 20px;
font-size: 14px;
line-height: 1.4;
color: #ffffff;
text-decoration: none;
}