-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
77 lines (55 loc) · 1.92 KB
/
readme.txt
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
=== Grid visualizer ===
Plugin Name: Grid visualizer
Plugin URI: https://github.com/danielgroen/wp-grid-visualizer
Description: This is a lightweight plugin that allows you to use a css overlay grid for development purpouses
Tags: css, grid, visualizer, visualized, visual, development, dev
Author: Daniel Groen
Author URI: https://danielgroen.nl/
Contributors: Daniel Groen
Requires at least: 4.1
Tested up to: 5.5
Stable tag: 20201015
Version: 20201015
Text Domain: grid-visualizer
License: GPL v2 or later
== Description ==
> Shows a grid over your site which you can customize by clicking `ctrl` + `;`
This is a lightweight plugin that allows you to use a css overlay grid for development purpouses
**Features**
* Visualize a grid over your site
* Enable the grid-layover by clicking: ctrl + ;
* Override css-variables to change the grid
* A ready to use css mixin called grid()
**Privacy**
__User Data:__ This plugin does not collect any data.
__Services:__ This plugin does not connect to any third-party locations or services.
== Installation ==
**Installation**
1. Activate the plugin
2. add the following css vars to your own stylesheet:
```
:root {
--grid-max-width: 'somevalue';
--grid-count: 'somevalue';
--grid-gap: 'somevalue';
--grid-color: 'somevalue';
--grid-left: 'somevalue';
--grid-opacity: 'somevalue';
--grid-zindex: 'somevalue';
--grid-padding: 'somevalue';
@media screen and (min-width: 1400px) {
--grid-count: 'someOtherValue';
}
}
```
3. optional if you are using scss. link in your stylesheet to the _grid.scss in this plugin. now you can use the mixin.
**Usage**
1. Enable the plugin
2. Override the available css-vars in your own stylesheet
3. Optional: link the _grid.scss in your stylesheet to use the scss mixin @grid()
4. Happy styling with your grid
== Changelog ==
*Thank you to everyone who shares feedback for Grid visualizer!*
**20201015**
* Inits the project
* Tests on WordPress 5.5