-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (98 loc) · 1.69 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body {
background-color: #FFDEE9;
background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);
width: 100%;
max-width: 700px;
margin: 32px auto;
}
.title {
color: #131515;
font-size: 44px;
}
.generals__header {
color: #004FFF;
}
.generals__header::before {
content: "";
display: inline-block;
width: 16px;
height: 16px;
background-color: tomato;
border-radius: 50%;
}
.generals__header::after {
content: "";
display: inline-block;
width: 16px;
height: 16px;
background-color: tomato;
border-radius: 50%;}
.generals {
color: rgb(0, 0, 0);
}
.generals__paragraph {
margin: 10px
}
.career {
color: #004FFF
}
.career__paragraph {
margin: 10px
}
.career__achievements {
color: #004FFF
}
.career__achievements--paragraph {
padding: 14px;
border: 3px solid yellow;
color: #131515
}
.career__records {
color: #004FFF
}
.career__records--paragraph {
color: #131515
}
.career__stats {
color: #004FFF
}
.career__stats--paragraph {
color: #131515
}
.footer {}
.site__header {}
.navigation__item {
text-decoration: none;
padding: 0 16px;
}
.navigation_link:hover {
color: violet;
}
.navigation_link:visited {
color: tomato ;
}
.navigation_link:focus {
border: 2px solid yellow
}
.navigation__list {
display: flex;
align-items: center;
justify-content: center;
list-style: none;
}
@media print {
body {
background: yellow;
}
}
.grid {
display: grid;
grid-template-columns: 1fr;
grid-column-gap: 16px;
grid-row-gap: 16px;
}
@media (max-width: 640px) {
.grid {
grid-template-columns: 1fr 1fr;
}
}