-
Notifications
You must be signed in to change notification settings - Fork 0
/
notsure.css
106 lines (95 loc) · 1.71 KB
/
notsure.css
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body styles */
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f0f0;
line-height: 1.6;
}
/* Header styles */
header {
background-color: #3cab77;
color: #fff;
text-align: center;
padding: 20px 0;
font-size: 1.5rem;
font-family: 'Great Vibes', cursive;
font-family: 'Great Vibes', cursive;
}
/* Main content container */
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/* Individual section cards */
section {
width: 300px;
margin: 20px auto;
padding: 20px;
border-radius: 10px;
text-align: center;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
background-color: #fff;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
cursor: pointer;
}
/* Hover effect */
section:hover {
transform: translateY(-10px) rotate(3deg);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* Heading and paragraph styles */
h2, p {
color: #333;
font-size: 1.2rem;
margin-bottom: 10px;
}
/* Image styles */
img {
max-width: 100%;
height: auto;
border-radius: 5px;
transition: opacity 0.3s ease;
}
/* Image hover effect */
section:hover img {
opacity: 0.8;
}
::selection{
color:cyan;
}
#text{
padding:20px;
padding-bottom: 0px;
}
#dogtraining{
padding:20px;
}
#obedience,#leash,#puppy-board,#customized{
background-color: #3cab77;
}
#obedience,#leash,#puppy-board,#customized ul {
text-align: left;
}
nav {
background-color: #444;
color: #fff;
overflow: hidden;
}
nav a {
float: left;
display: block;
color: #fff;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
nav a:hover {
background-color: #ddd;
color: #000;
}