-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.css
More file actions
117 lines (94 loc) · 1.83 KB
/
Copy pathtest.css
File metadata and controls
117 lines (94 loc) · 1.83 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
/* * {
margin: 0;
padding: 0;
box-sizing: border-box;
} */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
background-color: black;
line-height: 1.5;
}
.contener {
border: 2px dashed white;
font-size: 1.5rem;
margin: 1.5em;
padding: 1.5em;
}
h1{
color: red;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 40px;
border: 2px dashed white;
margin: 1em;
text-align: center;
}
h2{
color: red;
}
p{
color: aliceblue;
}
.one, .two, .three{
color: rgb(219, 203, 203);
font-style: italic;
font-family: monospace;
}
.highlight{
text-transform: uppercase;
color: #000;
background-color: gold;
}
.circle{
border: 3rem solid red;
margin: 2rem auto;
width: 0px;
height: px;
outline: 1px dashed white;
border-radius: 100px;
}
.typography{
margin: 2em;
font-family: "Roboto", sans-serif;
font-size: 1.2rem;
text-indent: 2em;
text-transform: capitalize;
}
/* .roboto-thin {
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: normal;
} */
a {
color: hsl(207, 100%, 50%);
}
a:hover, a:focus {
color: hsl(207, 100%, 67%);
background: gold;
}
a:visited {
color: blueviolet;
}
a:active {
color: red;
}
.list_styling {
color: white;
font-size: 1.2rem;
margin: 0.3;
}
ol {
text-align: center;
list-style-position: inside;
list-style-type: lower-roman;
/* list-style-image: url("../img/check-mark.png"); */
}
ul {
text-align: center;
list-style-position: inside;
}
ul ::marker {
font-family: fantasy;
font-size: 1em;
color: rgb(0, 255, 47);
content: "Only $1.99>> ";
}