12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- body {
- font-family: 'Muli', sans-serif;
- text-align: center;
- background: linear-gradient(184deg, black 0%, black 260px, transparent 260px);
- background-repeat: no-repeat;
- }
- #header {
- font-size: 3em;
- padding-top: 80px;
- padding-bottom: 100px;
- color: white;
- }
- #projects {
- width: 90%;
- margin: 4% auto;
- }
- .title {
- font-size: 1.5em;
- margin: 2% auto;
- }
- ul {
- margin: 2% auto;
- padding-left: 0px;
- list-style: none;
- }
- li {
- margin: 10px auto;
- }
- #links {
- width: 90%;
- margin: 2% auto;
- margin-top: 15%;
- }
- li::first-letter {
- color: #444444;
- }
- a:link, a:visited, a:active {
- color: green;
- }
- a:hover {
- color: darkslategray;
- }
- #github-icon {
- vertical-align: text-top;
- }
- .logo {
- width: 20px;
- height: 20px;
- vertical-align: middle;
- }
- .monospaced {
- font-family: 'Inconsolata', monospace;
- }
- .blink_text {
- opacity: 0;
- animation: 1s blinker ease-in-out 10;
- }
- @keyframes blinker {
- 0% { opacity: 0.0; }
- 50% { opacity: 1.0; }
- 100% { opacity: 0.0; }
- }
- .grow {
- transition: .2s ease-in-out;
- }
- .grow:hover {
- transform: scale(1.1);
- }
|