-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (32 loc) · 690 Bytes
/
Copy pathstyle.css
File metadata and controls
40 lines (32 loc) · 690 Bytes
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
body { /* element selector */
font-size: 22px;
/* border: solid black 2px; */
/* font-family: sans-serif; */
}
/* html { /* font settings here!
font-family: sans-serif;
} */
main {
font-family: monospace;
font-size: 14px;
}
/* * {
font-family: sans-serif; cambia tutto sulla pagina. universal selector.
} */
p { /* element selector */
color: purple;
}
p span { /* nasted, cerce dei span che si travano in p. è meglio usare una classe dato che possa essere riusata class="highlight"; */
color: aqua;
text-transform: uppercase;
background-color: red;
}
h1, h2 {
color: blue;
}
.gray { /* class */
color: gray;
}
#secondo { /* ID meglio non usarli */
font-style: italic;
}