forked from Helh15/freeweppage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
178 lines (137 loc) · 4.53 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@500&family=Raleway:wght@200&display=swap');
:root {
--color-pink: #dc8ea4;
--color-apricot: #fddd8a;
--color-beej: #f3ebe9;
--color-dark: #303942;
}
body {
margin: 0;
/* لو كانت الكتابة بيضاء يكون لون الخلفية #333333 */
/* background-color: #333333; */
/* لو كانت الكتابة سوداء يكون لون الخلفية اسود */
background-color: white;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23FDDD8A' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23DC8EA4'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
}
* {
box-sizing: border-box;
}
main {
height: 100vh;
width: 100vw;
margin: 0;
align-items: center;
justify-content: center;
display: flex;
}
#margen-5 {
margin: 5vh;
height: 80%;
width: 85%;
background-color: rgba(237, 236, 236, 0.099);
/* border: 1px solid rgba(190, 188, 188, 0.068); */
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row-reverse;
animation: border 2s;
}
main #svg {
text-align: center;
}
main svg {
width: 60vw;
stroke-dasharray: 335.4241027832031;
animation: 10s fill linear;
}
main p {
font-family: 'Raleway', sans-serif;
color: black;
font-size: 25px;
font-weight: lighter;
letter-spacing: .1em;
-webkit-animation: scale-up-hor-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation: scale-up-hor-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation-delay: 1s;
}
main a {
text-decoration: none;
color: white;
font-family: 'Changa', sans-serif;
font-weight: bold;
width: 108px;
height: 108px;
text-align: center;
line-height: 108px;
background-color: var(--color-pink);
display: inline-block;
font-size: 14px;
border-radius: 50%;
align-self: center;
-webkit-animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation: scale-up-center 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation-delay: 1.7s;
}
a:hover {
filter: drop-shadow(0 0 0.3rem rgb(236, 234, 234));
}
a:not(main a){
display: none;
}
@keyframes fill {
0% {
stroke-dashoffset: 335.4241027832031;
}
100% {
stroke-dashoffset: 0;
}
}
@-webkit-keyframes scale-up-hor-center {
0% {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
100% {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}
@keyframes scale-up-hor-center {
0% {
-webkit-transform: scaleX(0);
transform: scaleX(0);
}
100% {
-webkit-transform: scaleX(1);
transform: scaleX(1);
}
}
@-webkit-keyframes scale-up-center {
0% {
-webkit-transform: scale(0.5);
transform: scale(0.5);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes scale-up-center {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes border {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}