styles.css 540 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [class=title] {
  2. color: blue;
  3. }
  4. [type=text],
  5. [type=password] {
  6. border-radius: 10px;
  7. border: 1px solid grey;
  8. }
  9. [type=submit] {
  10. display: inline-block;
  11. padding: .75em 1.5em;
  12. background: dodgerblue;
  13. color: white;
  14. border-radius: .5em;
  15. cursor: pointer;
  16. text-decoration: none;
  17. border: none;
  18. }
  19. [href^="http://"] {
  20. border-bottom: 1px dashed red;
  21. }
  22. [href$=".jpg"] {
  23. color: green;
  24. }
  25. [href$=".pdf"] {
  26. color: blue;
  27. }
  28. a {
  29. background: pink;
  30. }
  31. [href*="ed.team"] {
  32. background: yellow;
  33. }