-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
111 lines (96 loc) · 1.71 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');
* {
margin: 0;
padding: 0;
font-size: 10px;
box-sizing: border-box;
font-family: 'Mulish', sans-serif;
}
body {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #6446a0;
}
.container {
width: 90%;
height: 90%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.circle {
width: 5rem;
height: 5rem;
border-radius: 50%;
margin-bottom: 25px;
background-color: #33f39e;
}
.rectangle {
width: 26rem;
height: 16rem;
display: flex;
flex-direction: row;
margin-bottom: 25px;
gap: 25px;
}
.lado1 {
flex: 1;
position: relative;
}
.lado1 .rectangle-top {
width: 100%;
height: 4rem;
background-color: #33f39e;
}
.lado1 .rectangle-right-top {
width: 4rem;
height: 40%;
position: absolute;
right: 0;
background-color: #33f39e;
}
.lado1 .rectangle-left-bottom {
width: 4rem;
height: 55%;
position: absolute;
bottom: 0;
left: 0;
background-color: #33f39e;
}
.lado2 {
flex: 1;
position: relative;
}
.lado2 .rectangle-top {
width: 100%;
height: 4rem;
background-color: #33f39e;
}
.lado2 .rectangle-left-top {
width: 4rem;
height: 40%;
position: absolute;
left: 0;
background-color: #33f39e;
}
.lado2 .rectangle-right-bottom {
width: 4rem;
height: 55%;
position: absolute;
bottom: 0;
right: 0;
background-color: #33f39e;
}
h1 {
font-size: 8rem;
color: #33f39e;
letter-spacing: 3px;
}
p {
font-size: 5rem;
color: #33f39e;
}