-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
42 lines (29 loc) · 712 Bytes
/
styles.css
File metadata and controls
42 lines (29 loc) · 712 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
41
42
/* css Zen Garden default style v1.02 */
/* css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/ */
/* begin writing your CSS below this line */
h1{
color:red;
text-align:center;
font-size:50px;
background-color: black;
}
body{
text-align:center;
width:400px;
background-color: orange;
}
a:hover {
background-color: black;
border-radius:50px;
}
h1:hover{
border-radius:50px;
border:10px dashed brown;
}
body:hover{
background-color:gold;
font-size:40px;
}
span.crosshair {
cursor: crosshair;
}