-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
Frank Fischer
committed
Dec 8, 2015
1 parent
ea2997d
commit 867c289
Showing
1 changed file
with
29 additions
and
23 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 |
---|---|---|
@@ -1,37 +1,43 @@ | ||
.propsTable table tr:nth-child(2n) { | ||
background-color: #fff; | ||
} | ||
|
||
.propsTable table td, .propsTable table th { | ||
border-top: 1px solid rgba(0, 0, 0, 0.06); | ||
border-left: 0 none; | ||
border-right: 0 none; | ||
display: table-cell; | ||
vertical-align: top; | ||
} | ||
border-top: 1px solid rgba(0, 0, 0, 0.06); | ||
border-left: 0 none; | ||
border-right: 0 none; | ||
display: table-cell; | ||
vertical-align: top; | ||
} | ||
|
||
.propsTable table th { | ||
border-bottom: 2px solid rgba(0, 0, 0, 0.06); | ||
border-top: 0 none; | ||
color: #888; | ||
display: table-cell; | ||
font-weight: normal; | ||
text-align: left; | ||
border-bottom: 2px solid rgba(0, 0, 0, 0.06); | ||
border-top: 0 none; | ||
color: #888; | ||
display: table-cell; | ||
font-weight: normal; | ||
text-align: left; | ||
} | ||
|
||
.propsTable table td { | ||
color: #266d90; | ||
font-family: Menlo,Monaco,Consolas,"Courier New",monospace; | ||
font-size: 90%; | ||
color: #266d90; | ||
font-family: Menlo,Monaco,Consolas,"Courier New",monospace; | ||
font-size: 90%; | ||
} | ||
|
||
.propsTable table td + td { | ||
color: #bf2a5c; | ||
color: #bf2a5c; | ||
} | ||
|
||
.propsTable table td + td + td { | ||
color: #666; | ||
font-family: Menlo,Monaco,Consolas,"Courier New",monospace; | ||
font-size: 90%; | ||
color: #666; | ||
font-family: Menlo,Monaco,Consolas,"Courier New",monospace; | ||
font-size: 90%; | ||
} | ||
|
||
.propsTable table td + td + td + td { | ||
color: rgba(51, 51, 51, 0.9); | ||
font-family: "Roboto", sans-serif; | ||
font-size: 95%; | ||
min-width: 250px; | ||
color: rgba(51, 51, 51, 0.9); | ||
font-family: "Roboto", sans-serif; | ||
font-size: 95%; | ||
min-width: 250px; | ||
} |