-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
078459c
commit 179d5ee
Showing
4 changed files
with
116 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,77 +1,99 @@ | ||
.skift .container { | ||
.skift { | ||
position: fixed; | ||
bottom: 15px; | ||
right: 15px; | ||
bottom: 5px; | ||
right: 5px; | ||
width: 300px; | ||
height: 300px; | ||
max-height: 500px; | ||
color: #292929; | ||
z-index: 999; | ||
background-color: #FFFFFF; | ||
border: 1px solid #f2800d; | ||
box-shadow: 0 0 0 15px rgba(0, 0, 0, 0.2); | ||
border: 2px solid #00b67a; | ||
transition: all .5s ease-out; | ||
opacity: 1; | ||
border-radius: 3px; | ||
} | ||
.skift .container.hideme { | ||
bottom: -350px; | ||
opacity: 0; | ||
|
||
.skift li.selected { | ||
font-weight: bold; | ||
} | ||
.skift .test-list { | ||
overflow-y: scroll; | ||
height: 250px; | ||
|
||
.skift li a { | ||
color: #0c59f2; | ||
} | ||
.skift .test { | ||
padding: 10px; | ||
|
||
.skift .variations .legend { | ||
font-size: 12px; | ||
} | ||
|
||
.skift .header { | ||
position: relative; | ||
top: 0; | ||
left: 0; | ||
padding: 10px; | ||
margin-bottom: 10px; | ||
background-color: #292929; | ||
padding: 8px; | ||
background-color: #00b67a; | ||
color: #FFFFFF; | ||
font-size: 16px; | ||
font-weight: bold; | ||
} | ||
|
||
.skift.hideme { | ||
bottom: -550px; | ||
opacity: 0; | ||
} | ||
|
||
.skift .tests { | ||
overflow-y: auto; | ||
} | ||
|
||
.skift .variations { | ||
background: #f4f7f9; | ||
box-shadow: inset 0 0 1px 1px #dfe2e5; | ||
padding: 8px; | ||
} | ||
|
||
.skift .variations ul { | ||
margin: 0; | ||
} | ||
|
||
.skift .test { | ||
padding: 8px 8px 0 8px; | ||
} | ||
|
||
.skift .data-label { | ||
display: inline-block; | ||
margin-bottom: 2px; | ||
margin-right: 5px; | ||
color: #292929; | ||
} | ||
|
||
.skift .data-label:after { | ||
content: ":"; | ||
} | ||
|
||
.skift .data-value { | ||
color: #000; | ||
font-weight: bold; | ||
text-transform: capitalize; | ||
} | ||
.skift .variant { | ||
text-transform: uppercase; | ||
color: #66ff33; | ||
} | ||
|
||
.skift .close { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
position: absolute; | ||
top: -8px; | ||
right: -8px; | ||
background-color: #f2800d; | ||
color: #000; | ||
right: 8px; | ||
background-color: #fff; | ||
color: #00b67a; | ||
height: 20px; | ||
width: 20px; | ||
border-radius: 5px; | ||
border-radius: 50%; | ||
cursor: pointer; | ||
text-align: center; | ||
font-size: 16px; | ||
line-height: 20px | ||
} | ||
|
||
.skift .reset { | ||
display: block; | ||
margin: 10px auto; | ||
width: 100%; | ||
padding: 5px 10px; | ||
background-color: #f2800d; | ||
background-color: #00b67a; | ||
font-size: 18px; | ||
color: #FFFFFF; | ||
border: 0; | ||
cursor: pointer; | ||
} |
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