-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
72 lines (63 loc) · 1.47 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
.card, .list-group{
margin: 20% auto;
height: 200px;
position: relative;
border: 3px solid green;
}
.list-group-item{
text-transform: capitalize;
/* list-style:none; */
font-weight: bold;
/* list-style: square; */
}
.active{
text-align: center;
}
.center{
margin-left: 25%;
/* margin-right: 50%; */
}
#button{
background-color: black;
color: white;
border-radius: 20px;
padding: 10px;
font-family: 'Merriweather', serif;
font-weight: bold;
font-size: 10px;
width: 150px;
text-align: center;
display: flex;
justify-content: center;
}
body{
background-color: black;
}
/* .badge-pill{
background-color: black;
} */
.list-group{
background-color: white;
height: 790px;
border-radius: 50px;
}
li{
background-color: black;
color: white;
/* padding: 200px; */
font-family: 'Merriweather', serif;
height: 30px;
list-style: none;
border-radius: 50px;
margin: 10px;
width: 210px;
text-align: center;
}
ul li::before {
content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
color: rgb(136, 136, 136); /* Change the color */
font-weight: bold; /* If you want it to be bold */
display: inline-block; /* Needed to add space between the bullet and the text */
width: 1em; /* Also needed for space (tweak if needed) */
margin-left: -1em; /* Also needed for space (tweak if needed) */
}