-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjQuery-style.css
More file actions
48 lines (42 loc) · 836 Bytes
/
jQuery-style.css
File metadata and controls
48 lines (42 loc) · 836 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
body {
width: 100%;
margin: 0;
padding: .5rem;
transition: 0.5s all ease-in-out;
background: linear-gradient(to right, teal, 65%, darkgreen);
font-family: Georgia, 'Times New Roman', Times, serif;
}
div.list {
margin: 0;
}
button.list-item {
border: 2px solid green;
background: seagreen;
color: white;
font-size: 1rem;
font-family: inherit;
font-weight: lighter;
letter-spacing: 1.7px;
width: 10rem;
padding: 10px;
margin: 5px 10px;
}
button.list-item:hover {
background: green;
}
button.active {
font-size: larger;
color: turquoise;
border-color: turquoise;
transition: all ease-in-out 1s;
}
div.wrapper {
width: 90%;
margin: 0 auto;
}
img.image {
border: 2px solid green;
width: 37vw;
height: 100%;
margin: 1rem;
}