forked from lhall-amphibee/xdebug-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/preferences_styling' into develop
- Loading branch information
Showing
3 changed files
with
59 additions
and
5 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
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,39 @@ | ||
body.options { | ||
background-color: rgba(217, 222, 255, 0.7); | ||
padding: 20px; | ||
} | ||
|
||
h1 { | ||
margin-top: 0; | ||
} | ||
|
||
.options ul { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.options ul li { | ||
list-style: none; | ||
border-left: 3px solid #1726b8; | ||
padding: 10px 0 10px 15px; | ||
margin-bottom: 15px; | ||
background: white; | ||
} | ||
.options ul li:nth-of-type(2) { | ||
border-color: #1d6218; | ||
} | ||
.options ul li:nth-of-type(3) { | ||
border-color: #892d1e; | ||
} | ||
.options ul li h2 { padding : 0; margin: 0;} | ||
.options ul li input[type=checkbox] { | ||
-moz-transform: scale(1.5); /* FF */ | ||
-webkit-transform: scale(1.5); /* Safari and Chrome */ | ||
padding: 10px; | ||
margin-right: 10px; | ||
} | ||
.options .buttons { text-align: left; } | ||
.options form button[type=submit] { | ||
font-size: 1.3em; | ||
width: 15%; | ||
text-align: center; | ||
} |