| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- body {
- font-size: 1.1em !important;
- }
- #main-image {
- background-size: cover;
- background-position: 50% 50%;
- width: 100%;
- height: 350px;
- }
- #main-image-container {
- padding: 30px 0;
- }
- #main-image-text {
- color: #fff;
- text-shadow: 0px 0px 10px black;
- }
- pre {
- padding: 10px 20px;
- }
- #git-menu-item {
- background: rgba(0, 255, 0, 0.1);
- }
- #git-menu-item:hover {
- background: rgba(0, 255, 0, 0.3);
- }
- #discord-menu-item {
- background: rgba(128, 0, 128, 0.3);
- }
- #discord-menu-item:hover {
- background: rgba(128, 0, 128, 0.7);
- }
- figure {
- margin: 10px 0px;
- }
- #top-shadow {
- background-color: #2185d0;
- height:5px;
- box-shadow: 0px 3px 5px #000;
- }
- #bottom-shadow {
- margin-bottom: -14px;
- background-color: #2185d0;
- height:5px;
- box-shadow: 0px -3px 5px #000;
- }
- /* Global message */
- .global-message {
- padding: 5px;
- font-size: 0.9em;
- }
- #global-message-error {
- background: #912d2b;
- color: #fff6f6;
- }
- #global-message-warning {
- background: #b58105;
- color: #fff8db;
- }
- #global-message-info {
- background: #dff0ff;
- color: #2185d0;
- }
|