-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
108 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
@value huge-and-up from '../lib/definitions.module.css'; | ||
@value max-width from '../lib/definitions.module.css'; | ||
|
||
.featureList { | ||
columns: 3 300px; | ||
column-gap: 1em; | ||
margin: 1em; | ||
} | ||
|
||
/* stylelint-disable-next-line media-feature-name-no-unknown */ | ||
@media (huge-and-up) { | ||
.featureList { | ||
/* stylelint-disable-next-line declaration-property-value-no-unknown */ | ||
max-width: max-width; | ||
margin: 1em auto; | ||
} | ||
} | ||
|
||
.item { | ||
display: inline-block; | ||
width: 100%; | ||
margin: 0 0 1em; | ||
} | ||
|
||
.itemBody { | ||
display: flex; | ||
align-items: flex-start; | ||
} | ||
|
||
.icon { | ||
margin-right: 0.5em; | ||
font-size: 200%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
@value small-and-up from '../lib/definitions.module.css'; | ||
|
||
.metaTable :global(.cell) { | ||
overflow: hidden; | ||
display: block !important; | ||
text-overflow: ellipsis; | ||
white-space: nowrap; | ||
} | ||
|
||
.page { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
} | ||
|
||
.main { | ||
flex: none; | ||
padding-top: 0.5em; | ||
} | ||
|
||
/* stylelint-disable-next-line media-feature-name-no-unknown */ | ||
@media (small-and-up) { | ||
.stats { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: space-between; | ||
} | ||
|
||
.col { | ||
width: 48%; | ||
} | ||
|
||
.stats[data-is-meta='true'] .col { | ||
width: 31%; | ||
} | ||
} | ||
|
||
.switcher { | ||
padding-top: 1em; | ||
text-align: center; | ||
} | ||
|
||
.submissionsList { | ||
position: relative; | ||
flex: 1 1 auto; | ||
} | ||
|
||
.statsArea { | ||
position: relative; | ||
overflow: hidden; | ||
flex: 1 1 auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters