mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
fixed styles
This commit is contained in:
parent
b6aceb4a82
commit
dea57e091b
2 changed files with 21 additions and 12 deletions
|
|
@ -7,7 +7,13 @@
|
|||
* 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
|
||||
*/
|
||||
|
||||
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-family: sans-serif; color: #222;}
|
||||
html{
|
||||
font-family: sans-serif;
|
||||
font-size: 100%;
|
||||
color: #222;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
}
|
||||
body { margin: 0; font-size: 1em; line-height: 1.4; }
|
||||
|
||||
/*
|
||||
|
|
@ -26,7 +32,10 @@ body { margin: 0; font-size: 1em; line-height: 1.4; }
|
|||
Links
|
||||
========================================================================== */
|
||||
|
||||
a {text-decoration:none; color: #00e; }
|
||||
a{
|
||||
color: #00e;
|
||||
text-decoration:none;
|
||||
}
|
||||
a:visited { color: #551a8b; }
|
||||
a:hover { color: #06e; }
|
||||
a:focus { outline: thin dotted; }
|
||||
|
|
@ -37,11 +46,11 @@ a:hover, a:active { outline: 0; }
|
|||
/* changed ul to panel, it using only in this case for now, and will css
|
||||
* processing cost 33% with name of tag, so it should be match faster
|
||||
*/
|
||||
.panel{
|
||||
.panel{
|
||||
/* removed default margins */
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
}
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* 1. Display hand cursor for clickable form elements
|
||||
|
|
|
|||
|
|
@ -80,9 +80,9 @@ body{
|
|||
.error::before{
|
||||
position: relative;
|
||||
bottom : 4px;
|
||||
content:'\f026';
|
||||
color:rgb(222, 41, 41);
|
||||
cursor:default;
|
||||
color:rgb(222, 41, 41);
|
||||
content:'\f026';
|
||||
}
|
||||
.loading{
|
||||
position:relative;
|
||||
|
|
@ -102,22 +102,22 @@ body{
|
|||
}
|
||||
|
||||
.cmd-button{
|
||||
border: 1.5px solid rgba(49,123,249,.40);
|
||||
background-color: white;
|
||||
color: rgb(49,123,249);
|
||||
width: 10%;
|
||||
margin: 20px 2px 0 2px;
|
||||
overflow: hidden;
|
||||
color: rgb(49,123,249);
|
||||
text-overflow: ellipsis;
|
||||
width: 10%;
|
||||
white-space: nowrap;
|
||||
background-color: white;
|
||||
border: 1.5px solid rgba(49,123,249,.40);
|
||||
}
|
||||
.cmd-button:hover{
|
||||
border: 1.5px solid rgb(0,0,0);
|
||||
}
|
||||
|
||||
.cmd-button:active{
|
||||
background-color: rgb(49,123,249);
|
||||
color: white;
|
||||
background-color: rgb(49,123,249);
|
||||
}
|
||||
|
||||
.clear-cache{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue