-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (103 loc) · 2.1 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
107
108
109
@keyframes anima {
0% {
left: 0px;
top: 0px; }
12.5% {
left: 290px;
top: 200px; }
25% {
left: 290px;
top: 0px; }
37.5% {
left: 0px;
top: 200px; }
50% {
left: 0px;
top: 0px; }
62.5% {
left: 290px;
top: 0px; }
75% {
left: 290px;
top: 200px; }
87.5% {
left: 0px;
top: 200px; }
100% {
left: 0px;
top: 0px; } }
.container {
width: 900px;
margin-right: auto;
margin-left: auto;
background: url(media/background.jpg) left top repeat;
padding-bottom: 10px; }
.container hr {
clear: both;
margin-top: 2px; }
.container .content, .container .content2 {
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
border-radius: 15px;
padding: 3px;
float: left;
border: solid 1px #009900;
margin: 5px;
background-color: #00ccff; }
.container .content2 {
width: 250px;
padding: 10px;
height: 250px;
box-shadow: 10px 10px 5px grey; }
.container .content2 form {
margin: 5px; }
.content1 {
margin-right: 20px;
float: right;
height: 500px;
width: 400px;
padding: 5px;
margin-bottom: 10px;
background: linear-gradient(#6666ff, #ccffff); }
.content1 a {
text-decoration: none;
background: #99ff66; }
.content1 a:hover {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px;
background: #66ffff;
width: 200px;
height: 70px;
border: solid 1px; }
#anim {
margin-left: 5px;
width: 100px;
height: 100px;
position: relative;
background-color: white;
animation-name: anima;
animation-duration: 20s;
animation-delay: 2s;
animation-iteration-count: infinite;
animation-direction: alternate; }
.new {
clear: both;
padding-bottom: 5px;
background-color: #ffccff; }
table {
width: 700px;
margin-left: auto;
margin-right: auto;
margin-top: 5px;
border: solid 1px; }
table tr th {
border-bottom: solid 2px; }
table tr td {
border: solid 1px; }
#vid {
float: right;
margin-right: 10px; }
/*# sourceMappingURL=style.css.map */