forked from stellajkimm/c9-first-workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (42 loc) · 1.02 KB
/
style.css
File metadata and controls
55 lines (42 loc) · 1.02 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
/* Use the comments below to complete activities 1 through 6. */
/* 1. Use the space below to change the background color of the page using the body tag */
body
{
background-color: blue;
}
/* 2a. Change the size of your image to 200px height and width*/
/* 2b. Give image1 a border */
#image1 {
width: 200px;
height: 200px;
border-style:dotted;
}
/* 3. Size image2 to make it twice as large as image1 */
#image2 {
width: 200%;
height: 200%;
}
/* 4. Change the buttons with class buttonStyle to be blue with white text */
.buttonStyle {
border-radius: 4px;
border: thin solid #F0E020;
padding: 5px;
background-color: blue;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
color: white;
width: 75px;
}
/* 5. Use the space below to make all h2 tags your favorite color. */
h2 {
color:red;
}
#mainContent {
font-family: Arial, Helvetica, sans-serif;
font-size: xx-large;
font-weight: bold;
background-color: #E3F0FB;
border-radius: 4px;
padding: 10px;
text-align: center;
}