Skip to content

Instantly share code, notes, and snippets.

@oxguy3
Last active December 14, 2015 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oxguy3/98e0e44b4bf79108399a to your computer and use it in GitHub Desktop.
Save oxguy3/98e0e44b4bf79108399a to your computer and use it in GitHub Desktop.
Highlight the services that are important to you on the AWS Console home page
/**
* HOW TO INSTALL THIS STYLE
*
* This is a user style written for Stylish. To use it, first install the Stylish
* extension for your browser. Once it's installed, go to the "Installed Styles"
* page and click "Write new style". Click the Import button (under the "Mozilla
* Format" heading), then copy-paste the entire contents of this file.
*
* Follow the instructions below to edit this style and customize it to your
* preferences. When you are finished, hit the Save button.
*
*
* This style was made by Hayden Schiff (oxguy3). License: WTFPL
*/
@-moz-document url-prefix("https://console.aws.amazon.com/console/home") {
/*********************************
* START OF CONFIGURABLE OPTIONS *
*********************************/
/**
* Remove the "/*" from the beginning of the line for any service that you
* want to be highlighted. For example, below you will see that EC2 is
* already set to be highlighted. (N.B. Don't edit the section titles.)
*/
/*** COMPUTE ***/
.service[data-service-id=ec2], /* EC2 */
/*.service[data-service-id=ecs], /* EC2 Container Service */
/*.service[data-service-id=eb], /* Elastic Beanstalk */
/*.service[data-service-id=lam], /* Lambda */
/*** STORAGE & CONTENT DELIVERY ***/
/*.service[data-service-id=s3], /* S3 */
/*.service[data-service-id=cfr], /* CloudFront */
/*.service[data-service-id=efs], /* Elastic File System */
/*.service[data-service-id=gl], /* Glacier */
/*.service[data-service-id=imex], /* Import/Export Snowball */
/*.service[data-service-id=sg], /* Storage Gateway */
/*** DATABASE ***/
/*.service[data-service-id=rds], /* RDS */
/*.service[data-service-id=ddb], /* DynamoDB */
/*.service[data-service-id=elc], /* ElastiCache */
/*.service[data-service-id=rs], /* Redshift */
/*.service[data-service-id=dms], /* DMS */
/*** NETWORKING ***/
/*.service[data-service-id=vpc], /* VPC */
/*.service[data-service-id=dc], /* Direct Connect */
/*.service[data-service-id=r53], /* Route 53 */
/*** DEVELOPER TOOLS ***/
/*.service[data-service-id=cc], /* CodeCommit */
/*.service[data-service-id=cd], /* CodeDeploy */
/*.service[data-service-id=cp], /* CodePipeline */
/*** MANAGEMENT TOOLS ***/
/*.service[data-service-id=cw], /* CloudWatch */
/*.service[data-service-id=cfo], /* CloudFormation */
/*.service[data-service-id=ctr], /* CloudTrail */
/*.service[data-service-id=cfg], /* Config */
/*.service[data-service-id=ops], /* OpsWorks */
/*.service[data-service-id=sc], /* Service Catalog */
/*.service[data-service-id=ta], /* Trusted Advisor */
/*** SECURITY & IDENTITY ***/
/*.service[data-service-id=iam], /* Identity & Access Management */
/*.service[data-service-id=ds], /* Directory Service */
/*.service[data-service-id=ins], /* Inspector */
/*.service[data-service-id=waf], /* WAF */
/*** ANALYTICS ***/
/*.service[data-service-id=emr], /* EMR */
/*.service[data-service-id=dp], /* Data Pipeline */
/*.service[data-service-id=es], /* Elasticsearch Service */
/*.service[data-service-id=ki], /* Kinesis */
/*.service[data-service-id=ml], /* Machine Learning */
/*** INTERNET OF THINGS ***/
/*.service[data-service-id=iot], /* AWS IoT */
/*** MOBILE SERVICES ***/
/*.service[data-service-id=mh], /* Mobile Hub */
/*.service[data-service-id=c], /* Cognito */
/*.service[data-service-id=df], /* Device Farm */
/*.service[data-service-id=a], /* Mobile Analytics */
/*.service[data-service-id=sns], /* SNS */
/*** APPLICATION SERVICES ***/
/*.service[data-service-id=ag], /* API Gateway */
/*.service[data-service-id=aps], /* AppStream */
/*.service[data-service-id=cs], /* CloudSearch */
/*.service[data-service-id=ets], /* Elastic Transcoder */
/*.service[data-service-id=ses], /* SES */
/*.service[data-service-id=sqs], /* SQS */
/*.service[data-service-id=swf], /* SWF */
/*** ENTERPRISE APPLICATIONS ***/
/*.service[data-service-id=wks], /* WorkSpaces */
/*.service[data-service-id=z], /* WorkDocs */
/*.service[data-service-id=wkm], /* WorkMail */
/*******************************
* END OF CONFIGURABLE OPTIONS *
*******************************/
/* force the uncommented services to full opacity */
:not(*) /* throwaway selector to prevent trailing commas from breaking things */
{
opacity: 1.0 ! important;
}
/* dim all the services that we didn't set full opacity on */
.service[data-service-id]
{
opacity: 0.4; /* increase or decrease this number to change level of dimmed-ness */
}
}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment