54 lines
795 B
SCSS
54 lines
795 B
SCSS
|
|
/*IntentList and IntentItem CSS*/
|
||
|
|
|
||
|
|
.IntentList{
|
||
|
|
width: 30%;
|
||
|
|
min-height:9999px;
|
||
|
|
height:9999px;
|
||
|
|
float:left;
|
||
|
|
background-color: #d5dae2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.IntentList-title{
|
||
|
|
font-size: 1.5em;
|
||
|
|
height: 70px;
|
||
|
|
padding: 20px;
|
||
|
|
text-align:left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.AddIntent{
|
||
|
|
float: right;
|
||
|
|
margin: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.IntentItem{
|
||
|
|
margin-top: 2px;
|
||
|
|
margin-bottom: 2px;
|
||
|
|
height: 50px;
|
||
|
|
width:100%;
|
||
|
|
text-align:left;
|
||
|
|
background-color: #adb0b5;
|
||
|
|
}
|
||
|
|
|
||
|
|
.IntentItem-selected{
|
||
|
|
margin-top: 2px;
|
||
|
|
margin-bottom: 2px;
|
||
|
|
height: 50px;
|
||
|
|
width:100%;
|
||
|
|
text-align:left;
|
||
|
|
background-color:#e8ecf2;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
/*IntentDetails CSS*/
|
||
|
|
|
||
|
|
.IntentDetails{
|
||
|
|
float: left;
|
||
|
|
width: 70%;
|
||
|
|
min-height:9999px;
|
||
|
|
height:9999px;
|
||
|
|
background-color:#e8ecf2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.QuestionBox{
|
||
|
|
margin:25px;
|
||
|
|
}
|