forked from jonasschmedtmann/complete-javascript-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (46 loc) · 630 Bytes
/
style.css
File metadata and controls
56 lines (46 loc) · 630 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
55
56
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: rgb(255, 247, 201);
font-family: Arial;
font-size: 20px;
padding: 50px;
}
h1 {
font-size: 35px;
margin-bottom: 25px;
}
h2 {
margin-bottom: 20px;
text-align: center;
}
p {
margin-bottom: 20px;
}
.first {
color: red;
}
#your-name {
background-color: rgb(255, 220, 105);
border: 5px solid #444;
width: 400px;
padding: 25px;
margin-top: 30px;
}
input,
button {
padding: 10px;
font-size: 16px;
}
a {
background-color: yellowgreen;
}
#course-image {
width: 300px;
}
#your-name h2 {
color: olivedrab;
}