forked from Chinnell/c9-first-workspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (34 loc) · 970 Bytes
/
style.css
File metadata and controls
49 lines (34 loc) · 970 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
43
44
45
46
47
48
49
/* 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 */
/* 2a. Change the size of your image to 200px height and width*/
/* 2b. Give image1 a border */
#image1 {
width: 50px;
height: 50px;
}
/* 3. Size image2 to make it twice as large as image1 */
#image2 {
width: 50%;
height: 50%;
}
/* 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: #F8F094;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
color: #663300;
width: 75px;
}
/* 5. Use the space below to make all h2 tags your favorite color. */
#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;
}