-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (90 loc) · 1.91 KB
/
style.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
html{
scroll-behavior: smooth;
}
body{
margin: 0px;
padding: 0px;
}
.topHolder{
background: url(bg.jpg);
text-align: center;
margin: 0px;
}
.bottomHolder{
background: linear-gradient(#000000, #292929);
text-align: center;
margin: 0px;
}
.tclogo{
display: inline-block;
margin: auto;
margin-top: 7.5%;
height: 420px;
width: 420px;
animation: borderRotator 5s linear 0s infinite;
}
.whiteHeading{
color: #ffffff;
text-align: center;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 50px;
}
.borderText{
display: inline-block;
color: #ffffff;
margin: 7px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
hr{
width: 47.2%;
display: inline-block;
height: 1px;
background-color: #474747;
border: 0px;
margin: 0px;
}
.downwardArrow{
display: block;
margin: auto;
width: 60px;
height: 60px;
animation: downwardArrowAnimation 2s linear 0s infinite;
}
.blogPostHolder{
display: inline-block;
height: auto;
width: 25%;
text-align: center;
color: #ffffff;
border: 1px solid #aaaaaa;
margin: 0px;
padding: 10px;
border-radius: 10px;
}
.blogpostText{
display: inline-block;
}
.blogpostDate{
float: right;
}
.textar{
border-radius: 10px;
}
input{
border-radius: 10px;
}
.blogpostWriterName{
color: #00a516;
}
@keyframes downwardArrowAnimation {
0% {transform: translate(0px,-10px);}
50% {transform: translate(0px,10px);}
100%{transform: translate(0px,-10px);}
}
@keyframes borderRotator {
0% {transform:rotateZ(0deg);}
25% {transform: rotateZ(90deg);}
50% {transform: rotateZ(180deg);}
75% {transform: rotateZ(270deg);}
100% {transform: rotateZ(360deg);}
}