This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimetable.css
122 lines (121 loc) · 1.99 KB
/
timetable.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@font-face {
font-family: 'Roboto';
font-weight: bold;
src: url(fonts/Roboto-Bold.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: light;
src: url(fonts/Roboto-Light.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: Regular;
src: url(fonts/Roboto-Regular.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: medium;
src: url(fonts/Roboto-Medium.ttf);
}
@font-face {
font-family: 'Roboto';
font-weight: thin;
src: url(fonts/Roboto-Thin.ttf);
}
@font-face {
font-family: "AbrilFatface";
font-weight: Regular;
src: url(fonts/AbrilFatface-Regular.otf);
}
::selection{
background: #adadad;
}
a{
text-decoration: none;
}
a:link {
color: black;
}
a:visited {
color: black;
}
a:hover {
color: black;
}
a:active {
color: black;
}
body{
margin: 0;
padding: 0;
}
header{
width: 50%;
display: grid;
}
.header_main{
font-family: "Roboto";
font-weight: Regular;
font-size: 24px;
margin-left: 32px;
margin-top: 5px;
padding: 0px;
}
.header_timetable{
animation: movetobig 2s 1;
animation-delay: 0s;
animation-timing-function: ease-out;
font-family: "Roboto";
font-weight: thin;
font-size: 72px;
margin-left: 230px;
margin-right: 0;
margin-top: 18px;
padding: 0px;
width: 50%;
}
.header_about{
font-family: "Roboto";
font-weight: Regular;
font-size: 24px;
margin-left: 32px;
margin-top: 5px;
padding: 0px;
}
.body_p{
font-family: "AbrilFatface";
font-weight: Regular;
font-size: 60px;
text-align: center;
}
.body_p_undertext{
font-family: "Roboto";
font-weight: 100;
font-size: 20px;
text-align: center;
}
@keyframes movetobig {
from{
margin-left: 32px;
font-family: "Roboto";
font-size:24px;
font-weight: Regular;
}
60% {
transform: translateX(25px);
}
70% { .
transform: translateX(25px);
}
80% {
transform: translateX(25px);
}
to{
transform: translateX(0px);
font-family: "Roboto";
font-weight: thin;
font-size: 72px;
margin-left: 230px;
}
}