-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.css
139 lines (114 loc) · 2.16 KB
/
index.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
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
html {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Nunito;
background-color: rgb(227, 205, 176);
min-height: 100vh;
color: darkgreen;
}
.carrot__headerHolder {
display: flex;
justify-content: space-between;
}
.carrot__nav {
margin: 2rem;
}
.carrot__navItem {
background-color: darkgreen;
color: white;
padding: 0.7rem;
border: 0.1rem solid orange;
box-shadow: 8px 8px orange;
border-radius: 1rem;
margin-right: 1rem;
font-size: 1.2rem;
font-weight: 700;
text-decoration: none;
}
.carrot__navItem:hover {
color:darkorange;
text-decoration: wavy underline;
}
.carrot__body {
display: flex;
flex-direction: column;
padding: 1rem;
min-height: 90vh;
}
.carrot__gameButtons button {
background-color: white;
color: green;
border: 0.1rem dashed green;
border-radius: 0.5rem;
font-family: Nunito;
font-weight:700;
margin: 0.2rem 0;
}
.carrot__gameButtons button:hover {
background-color: green;
border: 0.1rem dashed white;
color: white;
}
#downloadCarrot {
background-color: white;
color: green;
border: 0.1rem dashed green;
border-radius: 0.5rem;
font-family: Nunito;
font-weight:700;
margin: 0.2rem 0;
}
#downloadCarrot:hover {
background-color: green;
border: 0.1rem dashed white;
color: white;
}
.carrot__gameButtons p {
font-weight:700;
font-size: 1.5rem;
margin: 1rem 0 0.5rem 0;
}
h1 {
text-align: center;
font-size: 2.5rem;
}
h1 a {
text-decoration: none;
color: darkgreen;
}
h1 a:hover {
background-color: orange;
text-decoration: wavy underline;
}
.carrot__holder {
display: flex;
justify-content: center;
}
#carrotGame {
width: 50%;
margin: 0 5%;
}
#carrotImg {
margin: 10%;
}
#rabbitImg {
z-index: 1000;
}
#kaleImg {
margin-left: -10%;
}
.about__text {
font-weight: 700;
min-height: 60vh;
font-size: 2rem;
}
.about__text a {
color: rgb(255, 89, 0);
text-decoration: wavy underline;
}
.about__text a:hover {
color: white;
background-color: darkgreen;
text-decoration: wavy underline;
}