-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
140 lines (117 loc) · 2.8 KB
/
Copy pathstyle.css
File metadata and controls
140 lines (117 loc) · 2.8 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
body {
max-width: 100%;
padding: auto;
margin: auto;
}
header {
padding: 10px 16px;
z-index: 1;
background-color: white;
}
.content {padding: 16px;}
.container-md{--bs-gutter-x: 10px;}
.sticky {
position: fixed;
top: 0;
width: 100%;
}
.sticky + .content {padding-top: 120px;}
p, span, a {
font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
text-decoration: none;
}
a {color: var(--bs-black);}
.card-title {font-size: 16px;}
.card-subtitle {font-size: 14px;}
.card-text {font-size: 13px;}
.non-active:hover {background-color: #f8f9fa;}
.grid {
display: grid;
grid-template: repeat(3, 32%) / repeat(3, 32%);
column-gap: 20px;
row-gap: 10px;
margin-top: 20px;
}
footer {background-color: #262626;}
.f-grid {
display: grid;
grid-template-columns: 33% 33% 33%;
}
@media (max-width: 768px) {
.grid {
grid-template: 20% 20% / 45% 45%;
justify-content: space-between;
column-gap: 20px;
}
.btnDown {
max-width: 176px;
}
}
@media (max-width: 340px) {
.grid {
display: flex;
flex-direction: column;
}
.f-grid {
display: flex;
flex-direction: column;
}
.info {
flex-direction: column;
}
.textfooter {
padding: 10px 0 10px 0;
}
}
.about {
display: flex;
flex-direction: column;
}
.about > a {
padding-bottom: 20px;
color: white;
}
.textfooter {
font-size: 11px;
color: white;
}
a:hover {color: #49A144;}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: #59BD5A; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
border-radius: 5px; /* Rounded corners */
font-size: 30px; /* Increase font size */
height: 80px;
width: 80px;
margin: auto;
padding: auto;
}
#myBtn:hover {
background-color: #75bf75; /* Add a dark-grey background on hover */
transition: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
#dropdownMenuButton2 {
display: flex;
align-content: center;
justify-content: space-between;
flex-direction: row;
background-color: #3B3B3B;
width: 90%;
}
.color {color: #49A144;}
.fContainer {
display: flex;
justify-content: center;
}
.info {
display: flex;
justify-content: space-around;
}