-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation.css
More file actions
108 lines (96 loc) · 1.85 KB
/
Copy pathdocumentation.css
File metadata and controls
108 lines (96 loc) · 1.85 KB
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
.navbar-doc {
display: flex;
justify-content:space-between;
padding: 2rem;
width: 90%;
align-items:baseline;
margin: auto;
}
.navbar-doc > ul {
list-style-type: none;
width: min-width;
}
.navbar-doc > ul >li {
display: inline-block;
padding: 0 1.5rem;
}
.navbar-doc > ul >li > a {
text-decoration: none;
color: inherit;
}
.nav-title {
color: var(--primary-color-blue);
}
.section-content {
text-align: center;
width: 80%;
margin: auto;
padding: 5rem 0 0 0;
}
.section-title {
font-size: 3rem;
line-height:3.5rem;
font-weight: 900;
color: #333;
max-width: 700px;
margin: auto;
width: 80%;
}
.section-description {
font-size: 1.5rem;
line-height: 2.5rem;
margin: auto;
padding: 1.5rem 0;
width: 90%;
}
.btn-primary {
background-color: var(--primary-color-blue);
color: var(--text-color-whitesmoke);
}
.btn-primary:hover {
background-color: var(--primary-color-blue);
color: var(--text-color-whitesmoke);
}
@media only screen and (max-width: 1024px) {
.section-title {
font-size: 2.7rem;
}
.section-description {
font-size: 1.2rem;
line-height: 2rem;
}
}
@media only screen and (max-width: 874px) {
.section-title {
font-size: 2.5rem;
}
.navbar > ul >li {
display: inline-block;
padding: 0 0.7rem;
}
.navbar {
padding: 1rem;
}
}
@media only screen and (max-width: 657px) {
.section-title {
font-size: 2rem;
}
.section-description {
font-size: 1rem;
line-height: 2rem;
}
.nav-title {
font-size: 1rem
}
.navbar > ul >li {
display: inline-block;
padding: 0 0.7rem;
}
.navbar-doc {
padding: 1rem;
}
.navbar-doc > ul >li {
font-size: 0.8rem;
}
}