-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
144 lines (116 loc) · 2.15 KB
/
style.css
File metadata and controls
144 lines (116 loc) · 2.15 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Whenever you make a website, you do this 4 lines of code. We tell the website
that form the starting the border box will start from 0. */
/* Never forget this lines fo code whenever making a website. */
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgb(29, 136, 72);
padding-top: 0.75rem;
padding-bottom: 0.75rem;
padding-right: 20px;
padding-left: 20px;
}
.nav {
display: flex;
gap: 2rem;
}
.links {
/* Text decoration is exactly what it say-it adds decoration
to the text. */
text-decoration: none;
font-size: 1.5rem;
color: rgb(17, 17, 66);
}
.links:hover {
color: rgb(238, 255, 0);
}
img {
height: 300px;
width: 475px;
}
.tiger_lake {
border: 0.5rem double palevioletred;
}
.huge_text {
font-size: 2rem;
}
.icon {
font-size: 2rem;
}
.tiger_logo {
height: 75px;
width: 75px;
}
.killed{
border: 2px solid darkmagenta;
background-color: rgb(254, 198, 216);
}
.medium_text {
font-size: 1rem;
}
.baby_tiger {
border-radius: 15%;
}
.border {
border: 0.5rem outset rgb(21, 3, 76);
}
.bg_color {
background-color: rgb(255, 171, 76)
}
.learn a {
color: black;
text-decoration: none;
}
.big {
height: 150px;
width: 300px;
}
.conservation {
border: 4px solid rgb(47, 158, 255);
border-radius: 15px;
background-color: aliceblue;
}
.conservation p {
font-size: 1.3rem;
}
.extra {
width: 50rem;
height: 11.5rem;
}
.needed {
width: 50rem;
height: 16rem;
}
.section {
padding-left: 1rem;
}
.section ol {
padding-left: 2rem;
}
.section ul {
padding-left: 2rem;
}
.crazy input {
border: 2px solid rgb(10, 18, 37);
margin: 0 1rem;
}
.hi {
padding-top: 0.3rem;
}
.world {
height: 27rem;
width: 17rem;
}
.change {
border: 2px solid rgb(0, 55, 123);
background-color: rgb(191, 222, 255);
}
.x {
font-size: 10rem;
}