codigos_css.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. div.codigo{
  2. border: 2px solid gray;
  3. font-size: 0.85em;
  4. color: #3f3f3f;
  5. width: 300px;
  6. margin: auto;
  7. text-align: center;
  8. }
  9. .codigo{
  10. font-size: 1.3em;
  11. font-family:'Lucida Console'
  12. }
  13. .nomeLinguagem{
  14. font-size: 1.5em;
  15. color: black;
  16. font-weight: bold;
  17. }
  18. .tab {
  19. overflow: hidden;
  20. border: 1px solid #ccc;
  21. background-color: #8aaada;
  22. margin: auto;
  23. width: 600px;
  24. }
  25. /* Style the buttons that are used to open the tab content */
  26. .tab button {
  27. background-color: inherit;
  28. float: left;
  29. border: none;
  30. border-right: 1px;
  31. outline: none;
  32. cursor: pointer;
  33. padding: 14px 16px;
  34. transition: 0.3s;
  35. }
  36. /* Change background color of buttons on hover */
  37. .tab button:hover {
  38. background-color: #ddd;
  39. }
  40. /* Create an active/current tablink class */
  41. .tab button.active {
  42. background-color: #ccc;
  43. }
  44. /* Style the tab content */
  45. .tabcontent {
  46. display: none;
  47. border: 1px solid #ccc;
  48. color: #3f3f3f;
  49. margin: auto;
  50. margin-top: 0px;
  51. width: 600px;
  52. }
  53. .paraConhecerMais{
  54. border: 2px solid #ccc;
  55. color: #3f3f3f;
  56. margin: auto;
  57. margin-top: 0px;
  58. width: 100%;
  59. background-color: #f1f1f1;
  60. }
  61. .tg {border-collapse:collapse;border-spacing:0; margin: auto; max-width: 800px;}
  62. .tg td{font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}
  63. .tg th{font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}
  64. .tg .tg-c3ow{border-color:inherit;text-align:center;vertical-align:top}
  65. .tg .tab_titulo{font-weight:bold;border-color:inherit;text-align:center;vertical-align:top; background-color:#8aaada;}