I am really new to working in rhodes and RhomobileStudio.Being from a rails background,i'm familiar with .css.scss file extensions where we can execute powerful CSS3 codes.In Rhomobile Studio,however these extensions are not recognized. I'm trying something basic like this in the CSS files:
.some_class > input{
do something....
}
But these selectors aren't getting recognized.Is there any possible workaround possible for this??How do we use media queries or any other CSS frameworks in Rhomobile Studio??
HTML
<div class= "row">
<div class = "span24">
<div class = "index_form_login_form">
<form class="form-inline"> <input type="text" class="input-small" placeholder="Email">
<input type="password" class="input-small" placeholder="Password">
<label class="checkbox">
<input type="checkbox"> Remember me </label>
<button type="submit" class="btn">Sign in</button> </form>
</div>
</div>
</div>
Problem in my .CSS file:
.index_form_login_form{
background: #CCFFCC;
margin: 67px 50px 20px 333px;
width: 800px;
height: 232px
}|
The above gets executed,whereas the below part doesn't:
.index_form_login_form input{
margin-left: 50px;
}