-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (90 loc) · 1.76 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
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Poiret+One&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Cormorant:wght@300&family=Poiret+One&display=swap" rel="stylesheet');
html {
box-sizing: border-box;
}
*,
*::before,
*:after {
box-sizing: inherit;
}
body {
background: rgba(74, 78, 105, 0.774);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: 'Cormorant', serif;
color: #312F2F;
}
.button--js {
color: #312F2F;
background-color: lavenderblush;
border: none;
border-radius: 16px;
}
.button--js:focus {
border: 3px dotted rgba(200, 69, 212, 0.671);
}
.button--js:hover {
color: rgba(179, 98, 211, 0.555);
}
.entry--js {
color: #312F2F;
border: lavenderblush dotted 5px;
border-radius: 16px;
}
.main {
background: #F2E9E4;
border-radius: 16px;
width: 624px;
margin: 16px;
padding: 32px;
}
.person {
display: flex;
flex-direction: row;
}
.person__description {
font-size: 16px;
line-height: 22px;
margin-right: 15px;
}
.person__description--widht-margin {
margin-bottom: 22px;
}
.person__details {
margin-bottom: 24px;
margin-right: 15px;
text-align: left;
}
.person__image {
margin-right: 32px;
align-self: flex-start;
width: 140px;
height: 148px;
border-radius: 50%;
display: block;
flex-shrink: 0;
border: double 3px grey;
}
.person__link {
color: rgba(124, 108, 119, 0.767);
text-decoration: none;
}
.person__name {
font-size: 34px;
margin: 0px;
font-weight: lighter;
color:#6B4A63;
}
.person__position {
font-size: 16px;
font-style: italic;
margin: 0px;
color:rgba(48, 22, 41, 0.87);
}
.special {
color:#6B4A63;
font-weight: normal;
}