-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcs.css
47 lines (36 loc) · 1.08 KB
/
mcs.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
/* Applies to the entire body of the HTML document (except where overridden by more specific
selectors). */
body {
margin: 10px;
background-image: linear-gradient(90deg, #0082ca15, #cd202c15, #77b30015);
font-family: arial, sans-serif;
font-size: 16px;
}
/* Applies to all <h1>...</h1> elements. */
h1 {
font-size: 30px;
font-weight: normal;
margin-top: 5px;
}
/* Applies to all elements with <... class="someclass"> specified. */
.someclass { color: red; }
/* Applies to the element with <... id="someid"> specified. */
#someid { color: green; }
.container {
display: flex;
align-items: center;
justify-content: left
}
ul {
list-style: none; /* Remove default bullets */
}
ul li::before {
content:"\25A0";
font-size: 1rem;
/*color: #0082ca; [> Change the color <]*/
color: black; /* 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: 2em; /* Also needed for space (tweak if needed) */
margin-left: -1em; /* Also needed for space (tweak if needed) */
}