-
Notifications
You must be signed in to change notification settings - Fork 0
/
one.css
47 lines (43 loc) · 963 Bytes
/
one.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
/** CSS file for Workbook 1 - page "one" */
/** note that CSS files can have comments - using "code style" comments */
/* this defines a style for a class */
.blueText {
color:blue;
background-color:lightblue;
}
/* this defines a style for an ID */
#blueText {
color: blueviolet;
background-color: lightpink;
}
/* a simple box style to play with */
.onebox {
border: 2px solid rgb(36, 30, 23);
border-radius: 2px;
width:150px;
padding: 0px 10px 0px 10px;
margin: 15px 5px 15px 5px;
background-color: rgb(210, 250, 212);
color:darkorange;
}
/* for playing with the buttons */
.onebutton {
width:100px;
height:30px;
border-radius: 5px;
border: 2px solid black;
margin: 8px;
}
.onebutton:hover {
border: 4px solid black;
}
.onebutton:active {
color: white;
background-color: blue;
}
#button12 {
background-color: lightgreen;
}
#button12:active {
background-color: darkgreen;
}