All Downloads are FREE. Search and download functionalities are using the official Maven repository.

public.sparkdebugtools.css.sparkdebugtools_main.css Maven / Gradle / Ivy

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

@media (min-width: 769px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
        background: #aaa;
    }
    ::-webkit-scrollbar-thumb {
        background: #777;
    }
}

body {
    font: 12px "Helvetica Neue", helvetica, arial, sans-serif;
    color: #131313;
    background: #eeeeee;
    padding: 0;
    margin: 0;
    height: 100%;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

/* BEGIN SPARK STYLING */

#spark-header {
    border-top: 2px solid #FFA500;
    height: 50px;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: fixed;
    width: 100%;
}

#spark-header h1 {
    box-sizing: border-box;
    float: left;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 50px;
    width: 30%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 0 20px;
    padding: 0 40px 0 0;
}

#spark-header ul, #spark-header li {
    float: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

#spark-header li {
    margin-right: 50px;
    display: inline-block;
}

#spark-header li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 50px;
    color: #333;
}

#some-buttons {
    position: absolute;
    top: 15px;
    right: 15px;
}

.some-button {
    float: right;
    margin-left: 8px;
    opacity: .6;
}

.some-button:hover {
    opacity: 1;
}

.some-button img {
    height: 20px;
    width: 20px;
}

#github-star {
    float: right;
    width: 95px;
    height: 20px;
    margin-left: 8px;
    position: relative;
}

#star-bg, #star-frame {
    position: absolute;
}

#spark-footer {
    height: 20px;
    line-height: 20px;
    background: #f5f5f5;
    border-top: 1px solid #ddd;
    width: 100%;
    z-index: 1;
    position: fixed;
    bottom: 0;
    text-align: center;
    font-size: 10px;
    padding: 0 10px;
    box-sizing: border-box;
}

#spark-footer a {
    color: #cc8400;
}

@media (max-width: 800px) {
    #some-buttons {
        display: none;
    }
}

@media (max-width: 600px) {
    #spark-header a {
        display: none;
    }

    #spark-header h1 {
        text-align: center;
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
}

/* END SPARK STYLING */

.container {
    height: 100%;
    height: -moz-calc(100% - 70px);
    height: -webkit-calc(100% - 70px);
    height: calc(100% - 70px);
    width: 100%;
    position: fixed;
    margin: 0;
    left: 0;
    top: 50px;
}

.stack-container {
    height: 100%;
    position: relative;
}

.left-panel {
    height: 100%;
    overflow: auto;
    float: left;
    width: 30%;
    background: #DADADC;
}

.details-container {
    height: 100%;
    overflow: auto;
    float: right;
    width: 70%;
    background: #fafafa;
}

/* BEGIN LEFT PANEL HEADER */

.left-panel header {
    color: white;
    box-sizing: border-box;
    background-color: #2a2a2a;
    padding: 20px;
    min-height: 115px;
    display: flex;
    align-items: center;
}

.exception {
    width: 100%;
    position: relative;
}

.exc-title {
    margin: 0;
    color: #bebebe;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exc-title span:after {
    content: ".";
}

.exc-title span:last-of-type {
    color: #e95353;
}

.exc-title span:last-of-type:after {
    content: "";
}

.exc-message {
    font-size: 19px;
    word-wrap: break-word;
    margin: 4px 0 0 0;
    color: white;
}

/* END LEFT PANEL HEADER */

.frames-description {
    background: rgba(0, 0, 0, .05);
    padding: 8px 15px;
    color: #827E7E;
    font-size: 11px;
}

.frames-container {
    display: none; /* set to block by javascript (or 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy