This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IT2/html/tasks/chapter_1/hello_world/Main.css
2020-01-29 12:56:06 +01:00

50 lines
595 B
CSS
Executable File

html {
}
@font-face {
font-family: 'Karate';
src: url('Karate.ttf') format('truetype');
}
body {
margin: 0%;
padding: 0%;
border: 0%;
background-color: rgb(32, 32, 32);
}
h1 {
color: rgb(0, 255, 13);
text-align: center;
font-size: 5em;
font-family: Karate;
}
p, h2, h3, h4, h5 {
color: white;
}
a { color: rgb(49, 188, 216); }
a:hover { color: rgb(42, 255, 5); }
.header{ /* This is an example of a class */
}
#video{ /* This is an example of an ID */
}
#linkimage{
position: fixed;
right: 1em;
bottom: 1em;
width: 10em;
height: 10em;
}