PentesterLab exercises content take 100% of page's width.
PentesterLab exercises 100% width by noraj

Details
Authornoraj
LicenseMIT
Categorypentesterlab.com
Created
Updated
Code size518 B
Code checksumf05a8f65
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name PentesterLab exercises 100% width
@version 1.0.0
@namespace github.com/openstyles/stylus
@description PentesterLab exercises content take 100% of page's width.
@license MIT
@author Alexandre ZANNI (a.k.a. noraj)
==/UserStyle== */
@-moz-document url-prefix("https://pentesterlab.com/exercises/") {
div.container-fluid div.row:nth-child(5) { /* Content */
div.card-body > div.row > div.col-12 {
max-width: 100%;
}
}
}