-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (73 loc) · 1.21 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
* {
margin: 0px;
box-sizing: border-box;
padding: 0px;
}
body{
background-image: url("picture.jpg");
background-size: cover;
background-position: center;
height: 100vh;
}
.designation
{
text-align: center;
color:white;
text-transform: uppercase;
font-size: 20px;
margin-top: 40px;
}
.des
{
animation:changedes 1s infinite;
}
@keyframes changedes
{
0%{color: red;}
25%{color:rgb(43, 32, 194)}
50%{color:rgb(245, 230, 19);}
100%{color: blueviolet;}
}
.search-control
{
width:400px;
height:40px;
align-items: center;
margin-left: 550px;
box-shadow: 8px 8px 7px red;
font-weight: bold;
font-size: 23px;
}
.icon
{
width:30px;
height:20px;
}
.designation1
{
text-align: center;
font-size: 20px;
margin-top: 45px;
}
.des1
{
animation:changedes 1s infinite;
}
@keyframes changedes
{
0%{color: red;}
25%{color:rgb(43, 32, 194);}
50%{color:rgb(245, 244, 245);}
100%
{color: yellow;}
}
#myData
{
font-size:25px;
margin-left: 30px;
padding:10px;
line-height: 40px;
color:white;
text-transform:capitalize;
text-align: center;
}