MediaWiki:Mobile.css: Difference between revisions

From Decimal Wiki
Jump to navigation Jump to search
(Created page with "→‎All CSS here will be loaded for users of the mobile site: →‎Поле ввода: input[type="text"] { border: 1px solid #cccccc; border-radius: 3px; background: #ffffff !important; outline: none; height: 24px; width: 100px; color: #cccccc; font-size: 10px; font-family: Tahoma; }")
 
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* All CSS here will be loaded for users of the mobile site */
/* All CSS here will be loaded for users of the mobile site */
/* Поле ввода */
/* Поле ввода */
input[type="text"] {
.input {
   border: 1px solid #cccccc;  
   border: 1px solid #cccccc;  
   border-radius: 3px;  
   border-radius: 3px;  
   background: #ffffff !important;  
   background: #ffffff !important;  
   outline: none;  
   outline: #cccccc;  
   height: 24px;  
   height: 24px;  
   width: 100px;  
   width: 100px;  

Latest revision as of 18:33, 16 June 2024

/* All CSS here will be loaded for users of the mobile site */
/* Поле ввода */
.input {
   border: 1px solid #cccccc; 
   border-radius: 3px; 
   background: #ffffff !important; 
   outline: #cccccc; 
   height: 24px; 
   width: 100px; 
   color: #cccccc; 
   font-size: 10px; 
   font-family: Tahoma; 
}