123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- body {
- background-color: #000000;
- color: #00FF00;
- font-family: 'Courier New', monospace;
- line-height: 1.5;
- font-size: 16px;
- }
- header, footer {
- background-color: #000000;
- color: #00FF00;
- padding: 20px;
- text-align: center;
- border-bottom: 2px solid #00FF00;
- font-size: 18px;
- }
- footer {
- border-top: 2px solid #00FF00;
- }
- .sidebar-left, .sidebar-right {
- background-color: #000000;
- color: #00FF00;
- border-right: 2px solid #00FF00;
- padding: 15px;
- margin-bottom: 10px;
- }
- .main-column {
- background-color: #000000;
- color: #00FF00;
- padding: 20px;
- border-left: 2px solid #00FF00;
- margin-bottom: 20px;
- }
- button, input[type="submit"], input[type="button"] {
- background-color: #000000;
- color: #00FF00;
- border: 2px solid #00FF00;
- border-radius: 8px;
- padding: 10px 20px;
- cursor: pointer;
- font-family: 'Courier New', monospace;
- text-transform: none;
- font-size: 16px;
- }
- button:hover, input[type="submit"]:hover, input[type="button"]:hover {
- background-color: #00FF00;
- color: #000000;
- border-color: #00FF00;
- box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
- }
- input, textarea, select {
- background-color: #1A1A1A;
- color: #00FF00;
- border: 1px solid #00FF00;
- border-radius: 5px;
- padding: 10px;
- font-family: 'Courier New', monospace;
- font-size: 16px;
- }
- a {
- color: #00FF00;
- text-decoration: none;
- font-weight: normal;
- font-size: 16px;
- }
- table {
- background-color: #000000;
- color: #00FF00;
- width: 100%;
- border: 1px solid #00FF00;
- font-size: 16px;
- }
- table th {
- background-color: #00FF00;
- color: #000000;
- }
- table tr:nth-child(even) {
- background-color: #1A1A1A;
- }
- nav ul {
- background-color: #000000;
- padding: 0;
- margin: 0;
- border-bottom: 2px solid #00FF00;
- }
- nav ul li {
- display: inline-block;
- margin-right: 10px;
- }
- nav ul li a {
- color: #00FF00;
- padding: 10px;
- display: inline-block;
- font-family: 'Courier New', monospace;
- text-transform: none;
- font-size: 16px;
- }
- .profile {
- background-color: #1A1A1A;
- color: #00FF00;
- padding: 20px;
- border-radius: 8px;
- border: 1px solid #00FF00;
- box-shadow: 0 2px 5px rgba(0,255,0,0.5);
- }
- .profile .name {
- color: #00FF00;
- font-size: 18px;
- font-weight: bold;
- }
- .avatar {
- border: 4px solid #00FF00;
- border-radius: 50%;
- width: 80px;
- height: 80px;
- margin-bottom: 10px;
- }
- article, section {
- background-color: #1A1A1A;
- color: #00FF00;
- padding: 20px;
- border-radius: 10px;
- border: 1px solid #00FF00;
- box-shadow: 0 4px 10px rgba(0, 255, 0, 0.5);
- }
- .post-preview {
- background-color: #00FF00;
- padding: 15px;
- border-radius: 8px;
- color: #000000;
- }
- .post-preview img {
- border-radius: 8px;
- max-width: 100%;
- }
- .post-preview .image-container {
- display: block;
- margin: 0 auto;
- max-width: 100%;
- overflow: hidden;
- }
- ::-webkit-scrollbar {
- width: 12px;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #00FF00;
- border-radius: 10px;
- }
- ::-webkit-scrollbar-track {
- background-color: #000000;
- }
- .action-container {
- background-color: #1A1A1A;
- border: 2px solid #00FF00;
- padding: 20px;
- border-radius: 8px;
- color: #00FF00;
- box-shadow: 0 2px 5px rgba(0, 255, 0, 0.5);
- }
- footer a {
- background-color: #00FF00;
- color: #000000;
- padding: 8px 20px;
- border-radius: 5px;
- text-decoration: none;
- }
|