-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexerciseStyle.css
More file actions
172 lines (153 loc) · 3.01 KB
/
Copy pathexerciseStyle.css
File metadata and controls
172 lines (153 loc) · 3.01 KB
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
/* Made by Pol Ciendones */
.upperPart{
font-family: 'Playfair Display', serif;
margin: 0;
padding: 0;
color: #002147;
background-color: #F5F5DC;
}
.lowerPart {
font-family: 'Playfair Display', serif;
margin: 0;
padding: 0;
color: #F5F5DC;
background-color: #002147;
}
.upperPart, .lowerPart {
display: flex;
justify-content: space-between;
padding: 20px;
}
.upperPart-left, .lowerPart-left, .upperPart-right, .lowerPart-center, .lowerPart-right {
width: 30%;
padding: 20px;
}
.upperPart-left, .upperPart-right{
margin-top: 5px;
margin-bottom: 5px;
margin-right: 50px;
margin-left: 5px;
color: #002147;
}
.upperPart h1{
font-size: 30px;
}
.upperPart h2{
font-size: 25px;
}
p {
font-size: 20px;
line-height: 1.6;
}
.image-circle {
display: flex;
justify-content: center;
margin-top: -230px;
margin-bottom: 5px;
position: relative;
width: 300px;
height: 300px;
border-radius: 50%;
border: 50px solid #002147;
}
.lowerPart-right ul {
list-style: none;
padding: 0;
}
.lowerPart-right ul li {
font-size: 20px;
line-height: 1.6;
}
.lowerPart-left, .lowerPart-right {
color: #F5F5DC;
padding: 20px;
border-radius: 8px;
}
.lowerPart-left p, .lowerPart-right p {
color: #F5F5DC;
font-size: 20px;
}
.lowerPart-left h2, .lowerPart-right h2 {
color: #FFD700;
text-align: center;
font-size: 25px;
font-weight: bold;
}
.lowerPart-center h2{
color: #F5F5DC;
text-align: center;
font-size: 25px;
font-weight: bold;
}
.lowerPart-center p{
color: #FFD700;
font-size: 20px;
}
.stars {
display: flex;
}
.goldStar {
width: 20px;
height: 20px;
background-color: gold;
clip-path: polygon(
50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
);
}
.blackStar {
width: 20px;
height: 20px;
background-color: #333333;
clip-path: polygon(
50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
);
}
.line1 {
width: 200px;
height: 8px;
background: linear-gradient(
to right,
#FFD700 0%,
#FFD700 80%,
#333333 80%,
#333333 100%
);
border-radius: 10px;
}
.line2 {
width: 200px;
height: 8px;
background: linear-gradient(
to right,
#FFD700 0%,
#FFD700 100%,
#FFD700 100%
);
border-radius: 10px;
}
.line3 {
width: 200px;
height: 8px;
background: linear-gradient(
to right,
#FFD700 0%,
#FFD700 20%,
#333333 20%,
#333333 100%
);
border-radius: 10px;
}
.line4 {
width: 200px;
height: 8px;
background: linear-gradient(
to right,
#FFD700 0%,
#FFD700 60%,
#333333 60%,
#333333 100%
);
border-radius: 10px;
}