Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
feather
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
feather
Commits
dbd26436
Commit
dbd26436
authored
7 years ago
by
Cole Bemis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix browser compatibility issues
parent
ffdda301
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
20 deletions
+51
-20
style.css
style.css
+51
-20
No files found.
style.css
View file @
dbd26436
:root
{
--accent
:
#4353FF
;
--accent-darker
:
#3E4DED
;
}
.bg-accent
{
background-color
:
var
(
--accent
);
}
.hover-bg-accent-darker
:hover
{
background-color
:
var
(
--accent-darker
);
}
.rubik
{
.rubik
{
font-family
:
"Rubik"
,
sans-serif
;
font-family
:
"Rubik"
,
sans-serif
;
}
}
...
@@ -20,6 +7,14 @@
...
@@ -20,6 +7,14 @@
-moz-osx-font-smoothing
:
grayscale
;
-moz-osx-font-smoothing
:
grayscale
;
}
}
.bg-accent
{
background-color
:
#4353FF
;
}
.hover-bg-accent-darker
:hover
{
background-color
:
#3E4DED
;
}
.button
{
.button
{
display
:
inline-block
;
display
:
inline-block
;
padding
:
1rem
2rem
;
padding
:
1rem
2rem
;
...
@@ -39,12 +34,6 @@
...
@@ -39,12 +34,6 @@
text-overflow
:
ellipsis
;
text-overflow
:
ellipsis
;
}
}
.icon-grid
{
display
:
grid
;
grid-template-columns
:
repeat
(
auto-fill
,
minmax
(
12rem
,
1
fr
));
grid-gap
:
1rem
;
}
.svg
[
stroke
]
{
.svg
[
stroke
]
{
stroke
:
currentColor
;
stroke
:
currentColor
;
}
}
...
@@ -52,3 +41,45 @@
...
@@ -52,3 +41,45 @@
.svg
[
fill
]
:not
([
fill
=
none
])
{
.svg
[
fill
]
:not
([
fill
=
none
])
{
fill
:
currentColor
;
fill
:
currentColor
;
}
}
.icon-grid
{
display
:
flex
;
flex-direction
:
row
;
flex-wrap
:
wrap
;
margin
:
0
-0.5rem
-1rem
;
}
.icon-grid
li
{
width
:
100%
;
padding
:
0
0.5rem
1rem
;
}
/* medium breakpoint */
@media
(
min-width
:
30em
)
{
.icon-grid
li
{
width
:
50%
;
}
}
/* large breakpoint */
@media
(
min-width
:
60em
)
{
.icon-grid
li
{
width
:
25%
;
}
}
/* if supported, use grid layout */
@supports
(
display
:
grid
)
{
.icon-grid
{
display
:
grid
;
grid-template-columns
:
repeat
(
auto-fill
,
minmax
(
12rem
,
1
fr
));
grid-gap
:
1rem
;
margin
:
0
;
}
/* override default styles */
.icon-grid
li
{
width
:
100%
;
padding
:
0
;
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment