Advertisement
Guest User

Untitled

a guest
Aug 30th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. input[type="text"] {
  2. border: 1px solid black;
  3. border-radius: 5px;
  4. }
  5.  
  6. input[type="text"] {
  7. border: 1px solid #cccccc; //цвет рамки
  8. border-radius: 3px; //закругление углов (общее)
  9. -webkit-border-radius: 3px; //закругление углов (Google Chrome)
  10. -moz-border-radius: 3px; //закругление углов (FireFox)
  11. -khtml-border-radius: 3px; //закругление углов (Safari)
  12. background: #ffffff !important; // желательно прописывать, так как в Chrome при сохранных данных оно может быть желтым
  13. outline: none; // удаляет обводку в браузерах хром(желтая) и сафари(синяя)
  14. height: 24px; // высота на свое усмотрение
  15. width: 120px; // ширина на свое усмотрение
  16. color: #cccccc; //цвет шрифта в обычном состоянии
  17. font-size: 11px; // Размер шрифта
  18. font-family: Tahoma; // Стиль шрифта
  19. }
  20.  
  21. input[type="text"]:focus {
  22. color: #000000;
  23. border: 1px solid #000000
  24. }
  25.  
  26. input[type="text"]
  27.  
  28. input
  29.  
  30. .edit {
  31. border:1px solid #9E9E9E;
  32. color: #000000;
  33. padding: 3px;
  34. margin-top: 2px;
  35. margin-bottom: 2px;
  36. font-size: 11px;
  37. font-family: Verdana;
  38. background: #FFF;
  39. }
  40.  
  41. .bk {
  42. background:#fff url(images/shadow.png) repeat-x;
  43. }
  44.  
  45. <input class="edit bk" type="text" name="ololo">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement