diff --git a/cookie-clicker.html b/cookie-clicker.html new file mode 100644 index 0000000..bd18cf8 --- /dev/null +++ b/cookie-clicker.html @@ -0,0 +1,3670 @@ + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
Cookie ClickerOrteilDashNet
+
twitter
+
tumblr
+
+
Discord +
+
+
Merch! +
+
+
Patreon +
+ +
Cookie Clicker for Android
+
RandomGen
+
Idle Game Maker
+ +
+ +
+
+
+
+
+
Loading...
+
This is taking longer than expected.
+
Slow connection? If not, please make sure your javascript is enabled, then refresh.
+ If problems persist, this might be on our side - wait a few minutes, then hit ctrl+f5!
+
+
Your browser may not be recent enough to run Cookie Clicker.
You might want to update, or switch to a more modern browser such as Chrome or Firefox.
+
+
+ + + +
+
+
+
+
+
+
+
+
+
+
+
+
x
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
Options
+
Stats
+
+
New update!
Info +
+
Legacy
+
+
+
+
+
+
+
+
+
+
+
Buildings
+
+
+ +
+
+ +
+
+
Store
+
+
+
+
+
+
+
+ +
+
Cookie
+
Buildings
+
Store
+
Menu
+
+
+
+
+
+
+ +
+
+
+ +
+ +
+ + + + + + + + diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..df85987 Binary files /dev/null and b/favicon.ico differ diff --git a/games.html b/games.html new file mode 100644 index 0000000..5e92409 --- /dev/null +++ b/games.html @@ -0,0 +1,36 @@ + + + + + + Tide - Games + + + +
+

Tide Games

+
+ + + + + +
+ + + +
+ + + + diff --git a/index (4).html b/index (4).html new file mode 100644 index 0000000..aff72e9 --- /dev/null +++ b/index (4).html @@ -0,0 +1,30 @@ + + + + + + Tide + + + + +
Loading Tide...
+ + + + + diff --git a/style (2).css b/style (2).css new file mode 100644 index 0000000..d4d863e --- /dev/null +++ b/style (2).css @@ -0,0 +1,114 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); + +body { + margin: 0; + padding: 0; + background: linear-gradient(135deg, #0f0f0f, #1c1c1c); + color: #fff; + font-family: 'Poppins', sans-serif; + height: 100vh; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} + +.container { + text-align: center; + animation: fadeIn 2s ease forwards; +} + +.title { + font-size: 4rem; + font-weight: 700; +} + +.dot { + color: #00bcd4; +} + +form { + margin-top: 20px; +} + +input[type="text"] { + padding: 12px; + width: 300px; + border: none; + border-radius: 25px; + background: #2b2b2b; + color: white; + font-size: 1rem; + outline: none; + transition: 0.3s; +} + +input[type="text"]:focus { + background: #383838; +} + +button { + margin-top: 15px; + padding: 10px 30px; + font-size: 1rem; + border: none; + border-radius: 25px; + background: #00bcd4; + color: black; + cursor: pointer; + transition: 0.3s; +} + +button:hover { + background: #00a2b0; +} + +.options { + margin-top: 10px; + font-size: 0.9rem; + color: #aaa; +} + +.loader { + font-size: 2rem; + color: #00bcd4; + animation: pulse 2s infinite; +} + +/* Style for game buttons in games.html */ +.game-btn { + margin-top: 20px; + padding: 12px 35px; + font-size: 1.2rem; + background: #4caf50; /* Green background */ + color: white; + font-weight: 700; + border-radius: 25px; + cursor: pointer; + border: none; + transition: 0.3s; +} + +.game-btn:hover { + background: #45a049; /* Darker green when hovered */ +} + +@keyframes fadeIn { + 0% { + opacity: 0; + transform: translateY(20px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} + +@keyframes pulse { + 0%, 100% { + opacity: 1; + } + 50% { + opacity: 0.5; + } +}