2021-10-17 00:00:39 +05:30
|
|
|
#profile-name {
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding-bottom: 3%;
|
|
|
|
|
}
|
|
|
|
|
.stats {
|
|
|
|
|
padding-bottom: 6px;
|
|
|
|
|
}
|
2021-10-10 21:08:13 -07:00
|
|
|
.todo-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0px 0px 0;
|
|
|
|
|
width: 80%;
|
|
|
|
|
border-bottom: 1px solid #cecece;
|
|
|
|
|
font-family: Roboto, sans-serif;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type=checkbox]:focus {
|
|
|
|
|
outline: 0;
|
2021-10-16 23:33:38 +05:30
|
|
|
}
|
|
|
|
|
.plugin-root {
|
2021-10-17 00:00:39 +05:30
|
|
|
min-width: 260px;
|
|
|
|
|
}
|
|
|
|
|
.substats {
|
|
|
|
|
font-size: medium;
|
2021-10-16 23:33:38 +05:30
|
|
|
}
|
|
|
|
|
/* react-tabs internal file :wink: */
|
2021-10-17 00:00:39 +05:30
|
|
|
.material-icons {
|
|
|
|
|
font-size: 13px !important;
|
|
|
|
|
padding-top: 1px;
|
|
|
|
|
padding-right: 2px;
|
|
|
|
|
}
|
2021-10-16 23:33:38 +05:30
|
|
|
.react-tabs {
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab-list {
|
|
|
|
|
border-bottom: 1px solid #aaa;
|
|
|
|
|
margin: 0 0 10px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
border: 1px solid transparent;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
bottom: -1px;
|
|
|
|
|
position: relative;
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 1% 2%;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: medium;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab--selected {
|
|
|
|
|
background: var(--interactive-accent);
|
|
|
|
|
color: white;
|
|
|
|
|
border-radius: 5px 5px 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab--disabled {
|
|
|
|
|
color: GrayText;
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab:focus {
|
|
|
|
|
box-shadow: 0 0 5px hsl(208, 99%, 50%);
|
|
|
|
|
border-color: hsl(208, 99%, 50%);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab:focus:after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 5px;
|
|
|
|
|
left: -4px;
|
|
|
|
|
right: -4px;
|
|
|
|
|
bottom: -5px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab-panel {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-tabs__tab-panel--selected {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|