-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (87 loc) · 1.61 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
a{
position: relative;
top: 77%;
left: 34%;
font-size: 40px;
color: rgb(204, 193, 173);
font-family: Arial, Helvetica, sans-serif;
animation-name: lucky;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes lucky{
30%{
color: green;
}
60%{
color: rgb(17, 186, 192);
}
90%{
color: rgb(235, 194, 189);
}
}
.back{
border: 2px solid white;
}
.feed{
border: 2px solid white;
}
.home{
margin: 0 100px 0 100px;
border: 2px solid white;
}
.btn{
/* padding: 4px ; */
border: 2px solid white;
position: relative;
top: 82%;
height: 30px;
display: flex;
}
.gad{
background-image: linear-gradient(rgb(146, 241, 146), rgb(243, 41, 41), rgb(27, 21, 21), black);
position: relative;
border: 2px solid white;
height: 98%;
padding: 9px 0 0 0;
border-radius: 5px;
}
.ca{
background-color: rgb(49, 35, 9);
height: 13px;
width: 12px;
border-radius: 50%;
margin-left: 45%;
}
.case{
padding: 6px;
height: 500px;
background-color: black;
width: 23%;
border-radius: 20px;
margin: 40px 0 0 450px;
border: 6px dashed greenyellow;
animation-name: phone;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes phone{
0%{
border: 6px dashed red;
}
20%{
border: 6px dashed green;
}
40%{
border: 6px dashed blue;
}
60%{
border: 6px dashed red;
}
80%{
border: 6px dashed yellow;
}
95%{
border: 6px dashed blue;
}
}