-
Notifications
You must be signed in to change notification settings - Fork 0
/
news.css
86 lines (70 loc) · 1.38 KB
/
news.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
*{
font-size:20px;
padding:0;
margin:0;
box-sizing: border-box;
}
body{
background-image:url(img/img.JPG);
background-repeat: no-repeat;
background-size:100%;
height:100%;
animation: slide 10s infinite;
}
@keyframes slide{
30%{
background:url(img/1.JPG);
}
50%{
background:url(img/2.JPG);
}
75%{
background:url(img/3.JPG);
}
}
.container{
display:flex;
min-height:6%;
font-family:'Roboto Mono', monospace ;
}
.container .site-logo{
color:white;
border:1px double aqua;
margin:15px ;
border-radius: 2px;
border-left:1px hidden red;
border-right:1px hidden red;
}
ul{
list-style-type:none;
display:flex;
position:absolute;
font-size:20px;
margin:19px;
top:1px;
justify-content:space-around;
}
ul li a{
color:white;
text-decoration:none;
margin:18px;
padding: 3px;
border-radius: 7px;
}
ul li a:hover{
background-color:#fff;
color: black;
}
#newssection{
margin:15px 0px 0px 150px ;
}
.head{
margin:0 0 20px -300px;
color:aqua;
font-size: 2em;
}
#newssection table tr td img{
margin-bottom: 20px;
margin-right:20px;
cursor: pointer;
}