-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzadatak8.html
57 lines (55 loc) · 1.49 KB
/
zadatak8.html
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
<!DOCTYPE html>
<html lang="hr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zadatak 8 - Google like logo</title>
<style type="text/css">
body {
padding: 0;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: azure;
}
.google-logo {
position:relative;
width: 300px;
height: 300px;
padding: 0;
border-top: 100px solid red;
border-right: 100px solid blue;
border-bottom: 100px solid green;
border-left: 100px solid orange;
border-radius: 40%;
/*background-color: azure;*/
}
.google-logo::before {
content: "";
position: absolute;
top: 50%;
right: -95px;
transform: translateY(-50%);
width: 245px;
height: 100px;
/*background-color: magenta;*/
background-color: blue;
}
.google-logo::after {
content: "";
position: absolute;
top: -100px;
right: -100px;
width: 0;
height: 0;
border-top: 200px solid transparent;
border-right: 200px solid azure;
}
</style>
</head>
<body>
<div class="google-logo"></div>
</body>
</html>