-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (40 loc) · 679 Bytes
/
style.css
File metadata and controls
58 lines (40 loc) · 679 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
50
51
52
53
54
/* CSS files add styling rules to your content */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
}
h1 {
font-style: italic;
color: #373fff;
}
/* All the styling for containers and boxes */
.container {
border: 4px solid #ffba08;
margin: 2px;
padding: 4px;
}
#box1, #box2, #box3, #box4, #box5, #box6{
width: 150px;
border: 2px dashed black;
margin: 6px;
padding: 6px;
text-align: center;
}
#box1{
background-color: #6a040f;
}
#box2{
background-color: #d00000;
}
#box3{
background-color: #dc2f02;
}
#box4{
background-color: #e85d04;
}
#box5{
background-color: #f48c06;
}
#box6{
background-color: #faa307;
}