-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
98 lines (90 loc) · 1.76 KB
/
index.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
.body {
background-image:url("assets/gif1.gif");
background-size:cover;
background-repeat:no-repeat;
background-position:center;
background-attachment:fixed;
padding:5%;
}
.wrapper{
margin:10px;
margin:auto;
text-align:center;
border:10px solid #1a1a1a;
border-radius: 25px;
padding: 10px;
background-color: #222;
background-size:cover;
background-repeat:no-repeat;
background-position:center;
background-attachment:absolute;
width: 80%;
color: white;
overflow: auto;
display: block;
}
.wrapper > h3{
font-family:arial;
font-size:40px;
text-shadow: 2px 2px 15px #000000;
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 1.2s;
}
.wrapper > p{
text-align:justify;
text-indent:100px;
font-size:20px;
FONT-FAMILY:Verdana;
text-shadow: 2px 2px 4px #000000;
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 1.2s;
}
.rayt4{
width:400px;
text-align: right;
float:right;
border-radius:10px;
margin-right: 5%;
max-width:100%;
margin-top:1.5%;
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 1.2s;
}
.icons1{
font-size: 50px;
word-spacing: .5cm;
margin-right: 9%;
text-align: right;
float: right;
text-decoration: none;
cursor: pointer;
opacity: 1;
animation-name: fadeInOpacity;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-duration: 1.2s;
}
a{
text-decoration: none;
color: white;
}
a:hover{
color: #0066cc;
}
@keyframes fadeInOpacity {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}