-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (66 loc) · 1.48 KB
/
index.css
File metadata and controls
71 lines (66 loc) · 1.48 KB
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
html , body{
width: 100%;
height: 100%;
background-color: darkkhaki;
}
.pageHeader_container{
width: 100%;
height: 100%;
padding: 20;
}
.site-page-header {
border: 1px solid rgb(235, 237, 240);
}
.const gridStyle = {
width: '25%',
textAlign: 'center',
}
.Article_Container{
margin-Top : 30px; border: 3px solid green
}
.post_title_container{
margin-top: 1px;
margin-left: 2px;
text-align: center;
}
.button_container{
float: right;
size: large;
margin-top: 2px;
margin-left: 2%;
padding-left: 10cm;
}
.site-card-border-less-wrapper {
background: #ececec;
padding: 20px;
}
.menu_container{
margin-bottom: 20px;
}
.create_Post_Link_Nav_container{
float: right;
padding-right: 10%;
}
.read_Link_Nav_container{
padding-left: 10%;
}
h1{
color: red;
}
.main_heading{
background-color: blue;
text-align: center;
text-transform: full-width;
text-rendering: geometricPrecision;
position: relative;
animation-name: example;
animation-duration: 4s;
animation-delay: -2s;
}
@keyframes example {
0% {background-color:red; left:0px; top:0px;}
25% {background-color:yellow; left:200px; top:0px;}
50% {background-color:blue; left:200px; top:200px;}
75% {background-color:green; left:0px; top:200px;}
100% {background-color:red; left:0px; top:0px;}
}