-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (50 loc) · 860 Bytes
/
style.css
File metadata and controls
60 lines (50 loc) · 860 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
57
58
59
60
* {
margin: 0;
padding: 0;
}
h1 {
color: blue;
}
h1, p {
font-family: Arial, Helvetica, sans-serif;
}
div {
text-align: center;
}
div#navigation {
text-align: left;
}
/* p {
text-transform: lowercase;
text-transform: uppercase;
} */
#navigation li {
color: red
}
button {
padding: 20px;
margin: 20px;
border-radius: 15px;
border: none;
background-color: lightcoral;
box-shadow: 0 5px lightgrey;
transition: 0.3s;
cursor: pointer;
}
input {
padding: 5px;
border: 1px solid lightsalmon;
border-color: lightsalmon;
border-radius: 20px;
}
/* pseudo-class */
button:hover {
background-color: lightskyblue;
box-shadow: 0 1px lightgrey;
transition: 0.3s;
transform: translateY(4px);
}
/* pseudo-element */
input::placeholder {
color: lightsalmon;
}