Starbase Hints and Secrets Discussion

Joined
Apr 16, 2020
Messages
12
#1
Hey everyone!
Since today dropped the new Hint:
"A little bird told me about the Item 16"
And in order to solve this secret as a community I thought why not get organised and make a public threat where we can discuss everything about it.
Also we have got a new twitter account created named "TheItem16" dropping several images: https://twitter.com/TheItem16
I am excited to hear ur thoughts! Lets solve this!
Nudel - Iron Wolves Faction
 
Last edited:
Joined
Apr 17, 2020
Messages
11
#3
TheItem16 is dropping hourly images with no context. As of writing this I have pieced together all released corresponding images. It looks like there's a lot missing, we'll be here for a while.
Starbase.PNG

The numbers seem to be '0 4' or '8 4'
 

XenoCow

Master endo
Joined
Dec 10, 2019
Messages
566
#16
I was looking around the hints page using the inspect element tool and found that there is a particular CSS style applied to the pages:
CSS:
#secret-container {
 background:#2b4148;
 background:-moz-linear-gradient(left,#2b4148 0%,#3e5e68 35%,#3e5e68 65%,#2b4148 100%);
 background:-webkit-linear-gradient(left,#2b4148 0%,#3e5e68 35%,#3e5e68 65%,#2b4148 100%);
 background:linear-gradient(to right,#2b4148 0%,#3e5e68 35%,#3e5e68 65%,#2b4148 100%);
 filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="$outer",endColorstr="$outer",GradientType=1 );
 margin:0;
 height:100vh;
 text-align:center;
 font-size:18px;
 width:100vw
}
#secret-container h3 {
 text-transform:uppercase;
 color:#ff0;
 padding-top:5vh
}
If any of you know how to search a domain for pages that contain a particular CSS style, then We might be able to get a leg up!
 

XenoCow

Master endo
Joined
Dec 10, 2019
Messages
566
#17
Another thing, maybe the new strange line in the update:
"Doesn't work quite as well in text-format, but you get the point."
Implies that the new hint on the hint timer page is somehow an image, or many images...
 

XenoCow

Master endo
Joined
Dec 10, 2019
Messages
566
#18
Trying every 16th letter, and those letters converted to HEX and DEC did not yield any results. I suspect that HEX (base 16) might have something to do with all this.
 

Norway174

Active endo
Joined
Apr 12, 2020
Messages
44
#19
I was looking around the hints page using the inspect element tool and found that there is a particular CSS style applied to the pages:
CSS:
#secret-container {
background:#2b4148;
background:-moz-linear-gradient(left,#2b4148 0%,#3e5e68 35%,#3e5e68 65%,#2b4148 100%);
background:-webkit-linear-gradient(left,#2b4148 0%,#3e5e68 35%,#3e5e68 65%,#2b4148 100%);
background:linear-gradient(to right,#2b4148 0%,#3e5e68 35%,#3e5e68 65%,#2b4148 100%);
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="$outer",endColorstr="$outer",GradientType=1 );
margin:0;
height:100vh;
text-align:center;
font-size:18px;
width:100vw
}
#secret-container h3 {
text-transform:uppercase;
color:#ff0;
padding-top:5vh
}
If any of you know how to search a domain for pages that contain a particular CSS style, then We might be able to get a leg up!
That's just the general CSS for the main layout of the page itself.

As you can see, it sets the height and width to 100% of the view port. Meaning, to fill up the entire browser screen. And it then adds a gradient background to that.

And there doesn't seem to be any secret elements on the page.
 
Top