-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (45 loc) · 840 Bytes
/
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
html {
margin: 0;
font-size: 16px;
}
body {
width: 95%;
background-color: green;
font-family: "Coiny", sans-serif;
color: white;
}
#outer {
width: 16rem;
/* You can define it by % also */
height: 16rem;
/* You can define it by % also */
position: relative;
border: 1px solid black;
border-radius: 50%;
}
#inner {
display: flex;
align-items: center;
justify-content: center;
background-color: white;
top: 25%;
left: 25%;
/* of the container */
width: 50%;
/* of the container */
height: 50%;
/* of the container */
position: relative;
border: 1px solid black;
border-radius: 50%;
font-size: 4rem;
color: black;
text-align: center;
}
ul {
text-align: center;
}
li {
font-size: 1.75rem;
text-align: left;
}