-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
130 lines (109 loc) · 2.31 KB
/
styles.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
126
127
128
129
130
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
--color-aqua-blue--500: #34CFFD;
--color-aqua-blue--600: #2AA6CA;
--color-midnight-blue-500: #22345A;
--color-midnight-blue-50: #F6F7F8;
}
body {
margin: 0;
padding: 0;
background-color: var(--color-midnight-blue-50);
font-size: 16px;
font-family: 'Poppins', sans-serif;
color: var(--color-midnight-blue-500);
}
p {
margin: 0;
}
.header {
padding: 0.5rem 1rem;
background-color: var(--color-midnight-blue-500);
}
.header img {
max-width: 108px;
}
.documentation {
}
.documentation-links {
display: flex;
flex-direction: column;
gap: 0.6rem;
margin-top: 2rem;
}
.documentation-link {
display: flex;
flex-direction: row;
position: relative;
padding: 1rem 1.5rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.07);
}
.documentation-link .icon {
display: flex;
align-items: center;
justify-content: center;
align-self: center;
min-height: 3rem;
max-height: 3rem;
min-width: 3rem;
max-width: 3rem;
margin-right: 1rem;
border-radius: 50%;
}
.documentation-link .icon svg {
max-height: 70%;
max-width: 70%;
color: var(--color-midnight-blue-500);
}
.documentation-link a {
display: block;
width: fit-content;
font-size: 1.25rem;
text-decoration: none;
color: var(--color-aqua-blue--600);
transition: 0.3s;
}
.documentation-link a:hover, .documentation-link a:focus {
text-decoration: underline;
}
.documentation-link p {
font-size: 1rem;
}
.container {
display: flex;
flex-direction: column;
margin: 0 auto;
padding: 0 1rem;
}
.flex-column {
display: flex;
flex-direction: column;
gap: 8px;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container {
max-width: 1320px;
}
}