├── .gitignore ├── .gitmodules ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── dist ├── css │ ├── wireframes.css │ ├── wireframes.css.map │ ├── wireframes.min.css │ └── wireframes.min.css.map └── javascript │ ├── wireframes.js │ └── wireframes.min.js ├── examples ├── css │ └── documentation.css ├── index.html ├── javascript │ └── documentation.js └── magazine.html ├── gulpfile.js ├── images ├── css-wireframes-logo-32.png ├── css-wireframes-logo.svg └── css-wireframes-screenshot.jpg ├── package.json └── src ├── _base.scss ├── _fontello.scss ├── _fonts.scss ├── _helpers.scss ├── _mixins.scss ├── _variables.scss ├── config.json ├── fonts ├── blokkneue-regular.woff ├── blokkneue-regular.woff2 ├── fontello.woff ├── fontello.woff2 ├── kalam-regular.woff ├── kalam-regular.woff2 ├── redacted-regular.woff └── redacted-regular.woff2 ├── images ├── icon-view-dark.svg ├── icon-view-light.svg ├── media-audio-dark.svg ├── media-audio-light.svg ├── media-image-dark.svg ├── media-image-light.svg ├── media-video-dark.svg └── media-video-light.svg ├── javascript └── wireframes.js ├── modules ├── _block.scss ├── _colors.scss ├── _media.scss ├── _note.scss ├── _optional.scss ├── _text.scss └── _toolbar.scss └── wireframes.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | node_modules -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "src/frameworks/tinytypo"] 2 | path = src/frameworks/tinytypo 3 | url = https://github.com/mistergraphx/tinytypo.git 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | wireframes.ldd.fr -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ![CSS Wireframes Logo](images/css-wireframes-logo-32.png) css-wireframes 2 | 3 | A CSS framework to quickly design responsive wireframes directly in HTML. 4 | 5 | ![CSS Wireframes Screenshot](images/css-wireframes-screenshot.jpg) 6 | 7 | ## Getting started 8 | 9 | 1. Download a release, then put the CSS and Javascript files in your project folders. 10 | 11 | 2. Include your favorite CSS grid system in the ``, then the wireframe CSS and Javascript. 12 | 13 | ``` html 14 | 15 | 16 | 17 | 18 | 19 | 20 | … 21 | ``` 22 | 23 | 3. Compose your ergonomy by putting blocks where you want, and apply wireframe classes when needed. 24 | 25 | ``` html 26 |
27 |
Header
28 | 29 |
30 |
31 |

32 | 33 | Lorem ipsum dolor sit amet 34 | 35 |

36 |

37 | Vestibulum cras condimentum dis ullamcorper mattis dictumst interdum a commodo a parturient. 38 |

39 |
40 |
41 |
42 | Navigation 43 |
44 |
45 |
46 |
47 | ``` 48 | 49 | ## Documentation 50 | 51 | Check out [our documentation](http://wireframes.ldd.fr/examples/) for a live demo and detailled explanations. 52 | 53 | ## Credits 54 | 55 | ### Icon set 56 | The icons are based on the [sketchy icon set by Alice Mortaro](https://thenounproject.com/allie.fanni/collection/sketchy-wireframe/). 57 | Licence : [Creative Commons](http://creativecommons.org/licenses/by/3.0/us/) -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /dist/javascript/wireframes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS wireframes 3 | */ 4 | window.onload = css_wireframes_init; 5 | function css_wireframes_init(){ 6 | ( function( document, window ) { 7 | "use strict"; 8 | 9 | /** 10 | * Insert the toolbar at the end of the document 11 | * 12 | * [TODO] For the moment we add a single button, 13 | * but it could contain several ones in the future. 14 | * So the populating should be expendable. 15 | */ 16 | var insert_toolbar = function(){ 17 | var body = document.getElementsByTagName('body')[0]; 18 | var toolbar = ''; 25 | body.insertAdjacentHTML('beforeEnd', toolbar); 26 | } 27 | insert_toolbar(); 28 | 29 | /** 30 | * Manage optional elements 31 | * 32 | * Add closing buttons to each .wf-optional and hide it on press 33 | */ 34 | var manage_optional_elements = function(){ 35 | 36 | // Declare an empty hidden elements list 37 | var hidden_elements = []; 38 | 39 | // Make all notes optional 40 | var notes = document.getElementsByClassName('wf-note'); 41 | for (var i = 0; i < notes.length; i++) { 42 | notes[i].classList.add('wf-optional'); 43 | } 44 | 45 | // Add the close button to each optional element 46 | var optional_elements = document.getElementsByClassName('wf-optional'); 47 | for (var i = 0; i < optional_elements.length; i++) { 48 | optional_elements[i].insertAdjacentHTML('beforeEnd', '×'); 49 | } 50 | 51 | // Button : hide optional elements 52 | var btns_hide_elements = document.getElementsByClassName('wf-optional__close'); 53 | for (var i = 0; i < btns_hide_elements.length; i++) { 54 | btns_hide_elements[i].addEventListener("click", function(e){ 55 | e.preventDefault(); 56 | // Hide the element 57 | this.parentElement.classList.add('wf-hidden'); 58 | hidden_elements.push(this.parentElement); 59 | // Update the toolbar 60 | update_btn_show_elements(); 61 | }); 62 | } 63 | 64 | // Button : show all hidden elements 65 | var btn_show_elements = document.getElementById('show-elements'); 66 | if (btn_show_elements){ 67 | btn_show_elements.addEventListener("click", function(e){ 68 | e.preventDefault(); 69 | // Show the elements 70 | for (var i = 0; i < hidden_elements.length; i++) { 71 | hidden_elements[i].classList.remove('wf-hidden'); 72 | } 73 | hidden_elements = []; // We empty the hidden list 74 | // Update the toolbar 75 | update_btn_show_elements(); 76 | }); 77 | } 78 | 79 | /** 80 | * Update the show elements button in the toolbar (disable/enable) 81 | * @return bool 82 | * false if toolbar is disabled, true otherwise 83 | */ 84 | var update_btn_show_elements = function(){ 85 | var disabled; 86 | if (hidden_elements.length > 0){ 87 | btn_show_elements.classList.remove('wf-toolbar__link--disabled'); 88 | disabled = false; 89 | } else { 90 | btn_show_elements.classList.add('wf-toolbar__link--disabled'); 91 | disabled = true; 92 | } 93 | return disabled; 94 | } 95 | 96 | } 97 | manage_optional_elements(); 98 | 99 | } )( document, window ); 100 | } 101 | -------------------------------------------------------------------------------- /dist/javascript/wireframes.min.js: -------------------------------------------------------------------------------- 1 | function css_wireframes_init(){!function(e,t){"use strict";!function(){e.getElementsByTagName("body")[0].insertAdjacentHTML("beforeEnd",'')}();!function(){for(var t=[],n=e.getElementsByClassName("wf-note"),s=0;s×');for(var l=e.getElementsByClassName("wf-optional__close"),s=0;s0?(i.classList.remove("wf-toolbar__link--disabled"),e=!1):(i.classList.add("wf-toolbar__link--disabled"),e=!0),e}}()}(document,window)}window.onload=css_wireframes_init; -------------------------------------------------------------------------------- /examples/css/documentation.css: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS wireframe documentation 3 | * 4 | * [TODO] SASS this ! 5 | */ 6 | 7 | /* Overview section */ 8 | #overview { 9 | padding: 1rem 0; 10 | } 11 | 12 | /* Documentation section */ 13 | .documentation { 14 | font-family: 'Lato', sans-serif; 15 | color: hsl(0, 0%, 10%); 16 | background-color: white; 17 | } 18 | 19 | .documentation a, 20 | .documentation a:visited { 21 | color: hsl(200, 75%, 50%); 22 | } 23 | .documentation__introduction { 24 | padding-bottom: 3rem; 25 | } 26 | .documentation__title { 27 | margin: 4rem 0; 28 | padding: 2rem 0; 29 | text-align: center; 30 | background-color: hsl(0, 0%, 95%); 31 | box-shadow: inset 0 0.1rem 0.5rem rgba(0, 0, 0, 0.1); 32 | } 33 | 34 | /* menu */ 35 | .documentation__menu { 36 | } 37 | .documentation__menu [class^=item] { 38 | margin-bottom: 0.33em; 39 | } 40 | .documentation__menu .item--disabled { 41 | opacity: 0.33; 42 | text-decoration: line-through; 43 | pointer-events: none; 44 | } 45 | .documentation__menu a, 46 | .documentation__menu a:visited { 47 | text-decoration: none; 48 | color: hsl(0, 0%, 33%); 49 | text-transform: uppercase; 50 | } 51 | 52 | .documentation__heading { 53 | font-weight: bold; 54 | } 55 | 56 | /* elements */ 57 | .elements {} 58 | .element { 59 | padding: 4rem 0; 60 | border-top: 2px solid hsl(0, 0%, 85%); 61 | } 62 | .element__name { 63 | font-weight: bold; 64 | text-transform: uppercase; 65 | } 66 | 67 | /* class label */ 68 | [class^=element__class] { 69 | display: inline-block; 70 | color: hsl(330, 100%, 50%); 71 | font-weight: bold; 72 | font-family: monospace; 73 | } 74 | .class--variant { 75 | color: hsl(150, 66%, 50%); 76 | } 77 | .class--variable { 78 | font-style: italic; 79 | } 80 | 81 | /* example */ 82 | .element__example { 83 | /*padding: 2rem;*/ 84 | margin-bottom: 4rem; 85 | /*background-color: white;*/ 86 | color: #222; 87 | } 88 | .element__example:last-child { 89 | margin-bottom: 0; 90 | } 91 | 92 | /* preview */ 93 | .element__preview { 94 | } 95 | 96 | /* source code */ 97 | pre.element__source { 98 | margin: 0; 99 | } 100 | 101 | /* misc */ 102 | 103 | #icon .element__preview [class|=col] { 104 | text-align: center; 105 | margin-bottom: 1em; 106 | } 107 | #icon .element__preview small { 108 | display: block; 109 | color: hsl(0, 0%, 60%); 110 | margin-bottom: 0.2em; 111 | } 112 | 113 | .documentation .wf-block:last-child { 114 | margin-bottom: 0; 115 | } 116 | .documentation .code { 117 | font-family: monospace; 118 | color: hsl(330, 100%, 50%); 119 | } 120 | 121 | /* tooltips */ 122 | .tipsy { 123 | font-family: sans-serif; 124 | font-size: 0.8rem; 125 | } 126 | -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | CSS wireframe example 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 | Header 43 |
44 | 45 |
46 |
47 | 48 |

49 | 50 | Lorem ipsum dolor sit amet cras condimentum 51 | 52 |

53 | 54 |
55 | 56 |
Lorem vinae
57 |
58 | 59 | 60 | 61 |

62 | Vestibulum cras condimentum dis ullamcorper mattis dictumst interdum a commodo a parturient sit cras laoreet adipiscing magna sapien. A interdum curabitur vestibulum vestibulum dui cursus aptent dictum litora ipsum viverra scelerisque vestibulum venenatis dictumst a. Sociosqu at et erat nulla parturient orci porttitor lorem lobortis consectetur nibh vulputate hac fames dis at a ullamcorper elementum donec. Laoreet adipiscing magna sapien. A interdum curabitur vestibulum vestibulum. 63 |

64 | 65 | 66 |
67 |
68 |

69 | Vestibulum cras condimentum dis ullamcorper mattis dictumst interdum sit cras laoreet adipiscing magna sapien. A commodo a parturient. 70 |

71 |
72 |
73 |

74 | Vestibulum cras condimentum dis ullamcorper mattis dictumst interdum sit cras laoreet adipiscing magna sapien. A commodo a parturient. 75 |

76 |
77 |
78 |

79 | Vestibulum cras condimentum dis ullamcorper mattis dictumst interdum sit cras laoreet adipiscing magna sapien. A commodo a parturient. 80 |

81 |
82 |
83 | 84 | 85 |
86 |
87 |
88 | Dark block 89 |
90 |
91 |
92 |
93 | Light block 94 |
95 |
96 |
97 |
98 | Red block 99 |
100 |
101 |
102 |
103 | Green block 104 |
105 |
106 |
107 |
108 | Yellow block 109 |
110 |
111 |
112 |
113 | Pink block 114 |
115 |
116 |
117 | 118 |
119 | 120 |
121 |
122 | 123 | Navigation 124 | 125 |
126 | A very useful information.
Two lines. 127 |
128 |
129 |
130 |
131 |
132 |
133 | 134 | 135 | 136 |
137 |

Documentation

138 |
139 |
140 | 141 | 142 |
143 | 144 |
145 |

CSS selectors naming convention

146 |

147 | All the framework classes are prefixed with wf- : wf-block, wf-note, etc. 148 |
Furthermore, we use the BEM naming convention, which stands for Block Element Modifier 149 |
In a nutshell, it's a practical way to make names of CSS selectors as informative and clear as possible. It looks like this : block__element--modifier. 150 |
Use modifiers in conjonction to the basic class, like so : class="wf-something wf-something--modifier". 151 |
Please note that there's a bit a flexbox, transformations and such, so old outdated browsers are a no no! 152 |

153 |

Color scheme

154 |

155 | The framework is monochrome by choice : the sole purpose of a wireframe is to show the layout and the zoning of the page, it should not convey any information about its theme. There are a few colored elements available, but they should only be used in very specific cases. 156 |

157 | 158 |

159 | 160 |
161 | 162 | 167 |
168 |

Block

169 | 170 |

.wf-block

171 |

172 | A “block” allow you to materialize sections of your page. 173 |
Basically, it's just a border with a bit of padding. 174 |

175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 | <div class="wf-block"></div>
185 |
186 |
187 |
188 | 189 | 190 |

.wf-block__label

191 |

192 | Blocks can have a label, which is centered horizontally and vertically. When labelled, a block is supposed to contain only the label, and no other content. 193 |

194 |
195 |
196 |
197 |
198 |
199 |

A label

200 |
201 |
202 |
203 |
204 |
205 | <div class="wf-block">
	<label class="wf-block__label">A label</label>
</div>
206 |
207 |
208 |
209 | 210 | 211 |

.wf-block.wf-block--crossed

212 |

213 | Add diagonals in the background. 214 |

215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 | <div class="wf-block wf-block--crossed"></div>
225 |
226 |
227 |
228 | 229 | 230 |

.wf-block.wf-block--fill

231 |

232 | Make the block fill its container. 233 |

234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 | <div style="height: 6rem">
	<div class="wf-block wf-block--fill"></div>
</div>
244 |
245 |
246 |
247 | 248 | 249 |

.wf-block.wf-block--color-[color name]

250 |

251 | Colored background to highlight some blocks : dark, light, red, green, yellow, pink. 252 |

253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 | <div class="wf-block wf-block--color-dark">
	<label class="wf-block__label">Dark</label>
</div>
<div class="wf-block wf-block--color-light">
	<label class="wf-block__label">Light</label>
</div>
<div class="wf-block wf-block--color-red">
	<label class="wf-block__label">Red</label>
</div>
<div class="wf-block wf-block--color-green">
	<label class="wf-block__label">Green</label>
</div>
<div class="wf-block wf-block--color-yellow">
	<label class="wf-block__label">Yellow</label>
</div>
<div class="wf-block wf-block--color-pink">
	<label class="wf-block__label">Pink</label>
</div>
268 |
269 |
270 |
271 |
272 | 273 | 274 | 279 |
280 |

Text

281 | 282 | 283 |

.wf-text-lines

284 |

285 | Makes the text more abstract and less distracting by displaying it as lines. 286 |
It must be applied only on inline elements. 287 |

288 |
289 |
290 |
291 |
292 | 293 | Vestibulum cras condimentum dis ullamcorper. 294 |
Vestibulum cras condimentum. 295 |
Condimentum dis Vestibulum cras condimentum dis ullamcorper. 296 |
297 |
298 |
299 |
300 |
301 | <span class="wf-text-lines">
	Vestibulum cras condimentum dis ullamcorper.
	<br>Vestibulum cras condimentum.
	<br>Condimentum dis Vestibulum cras condimentum dis ullamcorper.
</span>
302 |
303 |
304 |
305 | 306 | 307 |

.wf-text-words

308 |

309 | Similar to line text, except each word is visible. 310 |
Can be applied on any element. 311 |

312 |
313 |
314 |
315 |
316 | 317 | Vestibulum cras condimentum dis ullamcorper. 318 |
Vestibulum cras condimentum. 319 |
Condimentum dis Vestibulum cras condimentum dis ullamcorper. 320 |
321 |
322 |
323 |
324 |
325 | <span class="wf-text-words">
	Vestibulum cras condimentum dis ullamcorper.
	<br>Vestibulum cras condimentum.
	<br>Condimentum dis Vestibulum cras condimentum dis ullamcorper.
</span>
326 |
327 |
328 |
329 |
330 | 331 | 332 | 337 |
338 |

Media

339 |

340 | Use this for placeholder medias : images, audio files and videos. 341 |
You can change its width, its aspect ratio, and use several graphical variants, see below. 342 |

343 | 344 | 345 |

.wf-media

346 |

By default, a media is square and about 150 pixels wide.

347 |
348 |
349 |
350 |
351 | 352 |
353 |
354 |
355 |
356 | <span class="wf-media"></span>
357 |
358 |
359 |
360 | 361 | 362 |

.wf-media.wf-ratio--[ratio]

363 |

You can change the aspect ratio with a helper class who provide 4 values : 4/3, 3/2, 16/9 and 2/1 – plus their opposite.

364 |
365 |
366 |
367 |
368 | 369 | 370 | 371 | 372 |
373 | 374 | 375 | 376 | 377 |
378 |
379 |
380 |
381 | <span class="wf-media wf-ratio--4-3"></span>
<span class="wf-media wf-ratio--3-2"></span>
<span class="wf-media wf-ratio--16-9"></span>
<span class="wf-media wf-ratio--2-1"></span>
<br>
<span class="wf-media wf-ratio--3-4"></span>
<span class="wf-media wf-ratio--2-3"></span>
<span class="wf-media wf-ratio--9-16"></span>
<span class="wf-media wf-ratio--1-2"></span>
382 |
383 |
384 |
385 | 386 | 387 |

.wf-media.wf-width--[width]

388 |

389 | Use the helper class .wf-width--[width] to set the width of medias. 390 |
There are two types of width: 391 |
Relative width: unit is in % (relative to the media's container). They go from 5% to 100% in 5% increments: 5,10,15 and so on. 392 |
393 |

394 |
395 |
396 |
397 |
398 | 399 | 400 | 401 | 402 | 403 |
404 |
405 |
406 |
407 | <!-- width in % -->
<span class="wf-media wf-width--5p"></span>
<span class="wf-media wf-width--10p"></span>
<span class="wf-media wf-width--15p"></span>
<span class="wf-media wf-width--20p"></span>
<span class="wf-media wf-width--25p"></span>
<!-- and so on until 100 -->
408 |
409 |
410 |
411 |

412 | Fixed width: Unit is in rem. They go from 5rem to 30rem in 5rem increments: 5,10,15 and so on. 413 |

414 |
415 |
416 |
417 |
418 | 419 | 420 |
421 |
422 |
423 |
424 | <!-- width in rem -->
<span class="wf-media wf-width--5r"></span>
<span class="wf-media wf-width--10r"></span>
<!-- and so on until 30 -->
425 |
426 |
427 |
428 |

429 | If you really need a pixel-precise width, use instead a placeholder image service like http://placehold.it for instance. 430 |

431 | 432 | 433 |

.wf-media.wf-media--dark

434 |

A dark background.

435 |
436 |
437 |
438 |
439 | 440 |
441 |
442 |
443 |
444 | <span class="wf-media wf-media--dark"></span>
445 |
446 |
447 |
448 | 449 | 450 |

.wf-media.wf-media--video

451 |

A variant for video files.

452 |
453 |
454 |
455 |
456 | 457 |
458 |
459 |
460 |
461 | <span class="wf-media wf-media--video"></span>
462 |
463 |
464 |
465 | 466 | 467 |

.wf-media.wf-media--audio

468 |

A variant for audio files.

469 |
470 |
471 |
472 |
473 | 474 |
475 |
476 |
477 |
478 | <span class="wf-media wf-media--audio"></span>
479 |
480 |
481 |
482 | 483 | 484 |

.wf-media.wf-media--rounded

485 |

Round variant for portraits and such.

486 |
487 |
488 |
489 |
490 | 491 |
492 |
493 |
494 |
495 | <span class="wf-media wf-media--round"></span>
496 |
497 |
498 |
499 | 500 | 501 |

.wf-media.wf-media--crossed

502 |

Crossed background for a simple filler.

503 |
504 |
505 |
506 |
507 | 508 |
509 |
510 |
511 |
512 | <span class="wf-media wf-media--crossed"></span>
513 |
514 |
515 |
516 |
517 | 518 | 519 | 524 |
525 |

Icons

526 |

.wf-icon--[name]

527 |

528 | Who doesn't like nice sketchy icons? 529 |
Based on sketchy wireframe by Alice Mortaro. 530 |

531 |
<span class="wf-icon--add"></span>
532 |
533 |
534 |
535 |
add
536 |
arrows
537 |
audio
538 |
calendar
539 |
camera
540 |
chat
541 |
checkbox
542 |
close
543 |
cloud
544 |
comment
545 |
connect
546 |
danger
547 |
deny
548 |
document
549 |
document-view
550 |
enlarge
551 |
envelope
552 |
globe
553 |
graph
554 |
help
555 |
home
556 |
info
557 |
marker
558 |
menu
559 |
mobile
560 |
pencil
561 |
play
562 |
printer
563 |
refresh
564 |
search
565 |
settings
566 |
time
567 |
user
568 |
users
569 |
view
570 |
view-list
571 |
view-thumbnail
572 |
arrow-left
573 |
arrow-right
574 |
arrow-top
575 |
arrow-bottom
576 |
angle-left
577 |
angle-right
578 |
angle-top
579 |
angle-bottom
580 |
angle-double-left
581 |
angle-double-right
582 |
angle-double-top
583 |
angle-double-bottom
584 |
585 |
586 |
587 |
588 | 589 | 590 | 595 |
596 |

Note

597 | 598 | 599 |

.wf-note

600 |

601 | Use notes to add comments about any elements (typically blocks). By default, they are located on the top right corner of their parent, and can be hidden. 602 |

603 |
604 |
605 |
606 |
607 |
608 |
A usefull comment
609 |
610 |
611 |
612 |
613 |
614 | <div class="wf-note">A usefull comment</div>
615 |
616 |
617 |
618 | 619 | 620 |

.wf-note.wf-note--top-left

621 |
622 |
623 |
624 |
625 |
626 |
A usefull comment
627 |
628 |
629 |
630 |
631 |
632 | <div class="wf-note wf-note--top-left">A usefull comment</div>
633 |
634 |
635 |
636 | 637 | 638 |

.wf-note.wf-note--bottom-left

639 |
640 |
641 |
642 |
643 |
644 |
A usefull comment
645 |
646 |
647 |
648 |
649 |
650 | <div class="wf-note wf-note--bottom-left">A usefull comment</div>
651 |
652 |
653 |
654 | 655 | 656 |

.wf-note.wf-note--bottom-right

657 |
658 |
659 |
660 |
661 |
662 |
A usefull comment
663 |
664 |
665 |
666 |
667 |
668 | <div class="wf-note wf-note--bottom-right">A usefull comment</div>
669 |
670 |
671 |
672 |
673 | 674 | 675 | 680 |
681 |

Helpers

682 | 683 | 684 |

Tiny Typo

685 |

686 | We use the Tiny Typo CSS base (it's included, you don't have to install it), and it has some neat helper classes like .small, .big, .left, .right, and such. Check them out! 687 |

688 | 689 | 690 |

.wf-optional

691 |

692 | Make any element optional and hiddable. You can display them again later with a toolbar located on the bottom right of the page. 693 |

694 |
695 |
696 |
697 |
698 |
699 | I'm optional, hover me and hide me! 700 |
701 |
702 |
703 |
704 |
705 | <div class="wf-block wf-optional">
	<span class="wf-block__label">I'm optional, hover me and hide me</span>
</div>
706 |
707 |
708 |
709 | 710 | 711 |

.wf-ratio--[ratio]

712 |

713 | Sets the aspect ratio of a block level element. Mainly usefull for medias. 714 |

715 | 716 | 717 |

.wf-width--[width]

718 |

719 | Sets the width of a block level element. Mainly usefull for medias. 720 |

721 | 722 | 723 |

.wf-margin--[position]

724 |

725 | Sets the margins of a block level element. 726 |

727 |
728 |
<div class="wf-margin--top"></div>
<div class="wf-margin--right"></div>
<div class="wf-margin--bottom"></div>
<div class="wf-margin--left"></div>
<div class="wf-margin--top--large"></div>
<div class="wf-margin--right--large"></div>
<div class="wf-margin--bottom--large"></div>
<div class="wf-margin--left--large"></div>
729 |
730 | 731 | 732 |

.wf-padding--[position]

733 |

734 | Sets the paddings of a block level element. 735 |

736 |
737 |
<div class="wf-padding--top"></div>
<div class="wf-padding--right"></div>
<div class="wf-padding--bottom"></div>
<div class="wf-padding--left"></div>
<div class="wf-padding--top--large"></div>
<div class="wf-padding--right--large"></div>
<div class="wf-padding--bottom--large"></div>
<div class="wf-padding--left--large"></div>
738 |
739 |
740 | 741 |
742 |
743 | 744 | 745 |
746 | 758 |
759 | 760 |
761 |
762 |
763 | 764 | 765 | 766 | 767 | -------------------------------------------------------------------------------- /examples/javascript/documentation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS wireframe documentation 3 | */ 4 | jQuery(function ($) { 5 | 6 | // init tooltips on all elements with a title 7 | $('[title]').tipsy({opacity: 0.8}); 8 | 9 | // Init sticky menu 10 | $("#menu").stick_in_parent({ 11 | offset_top: 32 12 | }); 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /examples/magazine.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | CSS wireframe : magazine example 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 |
26 |
27 | Header 28 |
29 |
30 | 31 | 32 |
33 |
34 |
35 |
36 |
Advertisement
37 |
38 |
39 |
40 |
41 | 42 | 43 | 44 |
45 |
46 |
Headline item
47 | 48 |
49 |
50 |

51 | Sed quem iudicem, nostrud eu sint offendit in nam minim nostrud. 52 |

53 |

54 | Probant quid malis aut aute est ipsum laborum non occaecat. Eiusmod malis ad deserunt fidelissimae, cupidatat multos aliquip quibusdam. 55 |

56 |
57 |
58 |
59 | 60 |
61 |
62 |
Secondary headline items
63 | 64 |
65 |
66 | 67 |

68 | Sed quem iudicem, nostrud eu sint offendit in nam. 69 |

70 |

71 | Probant quid malis 72 |

73 |

74 | Probant quid malis aut aute est ipsum laborum non occaecat.Hic e consectetur a excepteur veniam export incididunt dolore. Aliqua litteris concursionibus, ullamco nulla culpa si quorum. 75 |

76 |
77 |
78 | 79 |

80 | Sed quem iudicem, nostrud eu sint offendit in nam minim. 81 |

82 |

83 | Probant quid malis 84 |

85 |

86 | Probant quid malis aut aute est ipsum laborum non occaecat Mandaremus cillum commodo est minim officia firmissimum. Aliqua litteris concursionibus. 87 |

88 |
89 |
90 |
91 | 92 |
93 |
94 |
Tertiary headline items
95 |

96 | Sed quem offendit in nam. 97 |

98 |

99 | Probant quid malis 100 |

101 |

102 | Probant quid malis aut aute est ipsum laborum non occaecat.Hic e consectetur a excepteur veniam export incididunt dolore. 103 |

104 |
105 |
106 |

107 | Nostrud eu sint offendit in nam minim. 108 |

109 |

110 | Probant quid malis 111 |

112 |

113 | Probant quid malis aut aute est ipsum laborum non occaecat Mandaremus cillum commodo est minim litteris concursionibus. 114 |

115 |
116 |
117 |

118 | Sed quem iudicem, nostrud eu. 119 |

120 |

121 | Probant quid malis 122 |

123 |

124 | Probant quid malis aut aute est ipsum laborum non occaecat Mandaremus cillum commodo est minim officia firmissimum. Aliqua litteris concursionibus. 125 |

126 |
127 |
128 |
129 |
130 |
131 |
Advertisement
132 |
133 |
134 |
135 | 136 |
137 | 138 | 139 |
140 | Probant quid malis aut aute est ipsum laborum non occaecat Mandaremus cillum commodo est. 141 |
142 | 143 |
144 | 145 | 146 |
147 |

Mandaremus.

148 |
149 |
150 |
151 |
Latest items
152 | Probant manderulm. 153 |
Mandaremus cillum. 154 |
155 |
156 | 157 |
158 |
159 |

Mandaremus cillum commodo est.

160 | Mandaremus cillum commodo est dolore senserit qui aliqua tamen, arbitror cohaerescant est mandaremus Eram excepteur praetermissum, legam vidisse praetermissum. Irure cupidatat nescius, a quae reprehenderit. 161 |
162 |
163 |
164 |
165 | Probant manderulm. 166 |
Mandaremus cillum. 167 |
168 |
169 | 170 |
171 |
172 |

Mandaremus cillum commodo est.

173 | Mandaremus cillum commodo est dolore senserit qui aliqua tamen, arbitror cohaerescant est mandaremus Eram excepteur praetermissum, legam vidisse praetermissum. Irure cupidatat nescius, a quae reprehenderit. 174 |
175 |
176 |
177 |
178 | Probant manderulm. 179 |
Mandaremus cillum. 180 |
181 |
182 | 183 |
184 |
185 |

Mandaremus cillum commodo est.

186 | Mandaremus cillum commodo est dolore senserit qui aliqua tamen, arbitror cohaerescant est mandaremus Eram excepteur praetermissum, legam vidisse praetermissum. Irure cupidatat nescius, a quae reprehenderit. 187 |
188 |
189 |
190 |
191 | Probant manderulm. 192 |
Mandaremus cillum. 193 |
194 |
195 | 196 |
197 |
198 |

Mandaremus cillum commodo est.

199 | Mandaremus cillum commodo est dolore senserit qui aliqua tamen, arbitror cohaerescant est mandaremus Eram excepteur praetermissum, legam vidisse praetermissum. Irure cupidatat nescius, a quae reprehenderit. 200 |
201 |
202 |
203 |
204 | Probant manderulm. 205 |
Mandaremus cillum. 206 |
207 |
208 | 209 |
210 |
211 |

Mandaremus cillum commodo est.

212 | Mandaremus cillum commodo est dolore senserit qui aliqua tamen, arbitror cohaerescant est mandaremus Eram excepteur praetermissum, legam vidisse praetermissum. Irure cupidatat nescius, a quae reprehenderit. 213 |
214 |
215 | 216 |
217 | 218 | 219 |
220 |
Thematics
221 |
222 | 223 |
Mandaremus cillum 224 |
225 |
226 | 227 |
Mandaremus cillum 228 |
229 |
230 | 231 |
Mandaremus cillum 232 |
233 |
234 | 235 |
Mandaremus cillum 236 |
237 |
238 | 239 |
240 | 241 | 242 |
243 |
244 |
245 |
246 |
Yet another advertisement
247 |
248 |
249 |
250 |
251 | 252 |
253 | 254 | 255 |
256 |

Mandaremus.

257 |
258 |
259 |
Spotlight
260 |
261 | 262 |

263 | Sed quem iudicem, nostrud eu sint offendit in nam. 264 |

265 |

266 | Probant quid malis 267 |

268 |

269 | Probant quid malis aut aute est ipsum laborum non occaecat.Hic e consectetur a excepteur veniam export incididunt dolore. Aliqua litteris concursionibus, ullamco nulla culpa si quorum. 270 |

271 |
272 |
273 | 274 |

275 | Sed quem iudicem, nostrud eu sint offendit in nam. 276 |

277 |

278 | Probant quid malis 279 |

280 |

281 | Probant quid malis aut aute est ipsum laborum non occaecat.Hic e consectetur a excepteur veniam export incididunt dolore. Aliqua litteris concursionibus, ullamco nulla culpa si quorum. 282 |

283 |
284 |
285 | 286 |

287 | Sed quem iudicem, nostrud eu sint offendit in nam. 288 |

289 |

290 | Probant quid malis 291 |

292 |

293 | Probant quid malis aut aute est ipsum laborum non occaecat.Hic e consectetur a excepteur veniam export incididunt dolore. Aliqua litteris concursionibus, ullamco nulla culpa si quorum. 294 |

295 |
296 |
297 | 298 |

299 | Sed quem iudicem, nostrud eu sint offendit in nam. 300 |

301 |

302 | Probant quid malis 303 |

304 |

305 | Probant quid malis aut aute est ipsum laborum non occaecat.Hic e consectetur a excepteur veniam export incididunt dolore. Aliqua litteris concursionibus, ullamco nulla culpa si quorum. 306 |

307 |
308 |
309 | 310 |
311 | 312 | 313 | 314 |
315 |
316 |
Contributors
317 |

Fore incididunt

318 |
319 |
320 | 321 |
322 |
323 | Quae cernantur. 324 |
Fore incididunt ad incurreret, aut quid. 325 |
326 |
327 |
328 |
329 | 330 |
331 |
332 | Quae cernantur. 333 |
Fore incididunt ad incurreret, aut quid. 334 |
335 |
336 |
337 |
338 | 339 |
340 |
341 | Quae cernantur. 342 |
Fore incididunt ad incurreret, aut quid. 343 |
344 |
345 |
346 |
347 |
Popular
348 |

Fore incididunt

349 |
350 | Quae cernantur. 351 |
Fore incididunt ad incurreret, aut quid. 352 |
353 |
354 | Quae cernantur incididunt ad. 355 |
Fore incididunt ad incurreret, aut quid Fore ita ullamco qui proident anim ea. 356 |
357 |
358 | Quae cernantur. 359 |
Fore incididunt ad incurreret, aut quid. 360 |
361 |
362 | Quae cernantur incididunt. 363 |
Fore incididunt ad incurreret, aut quid. Ita tamen deserunt, quae id probant eu summis. 364 |
365 |
366 | Quae cernantur. 367 |
Fore incididunt ad incurreret, aut quid. 368 |
369 |
370 |
371 | 372 | 373 |
374 |
375 | Footer 376 |
377 |
378 | 379 | 380 |
381 | 382 | 383 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | // Include dependancies 2 | var 3 | gulp = require('gulp'), 4 | plugins = require('gulp-load-plugins')(), 5 | sass = require('gulp-sass'), 6 | postcss = require('gulp-postcss'), 7 | sourcemaps = require('gulp-sourcemaps'), 8 | autoprefixer = require('autoprefixer'), 9 | cleanCSS = require('gulp-clean-css'), 10 | minify = require('gulp-minify'), 11 | rename = require("gulp-rename"), 12 | cssBase64 = require('gulp-css-base64'), 13 | clean = require('gulp-clean') 14 | ; 15 | 16 | // Default task 17 | gulp.task('default', function() {}); 18 | 19 | // Monitor changes on files and launch various tasks 20 | gulp.task('watch', function() { 21 | // CSS stuff 22 | gulp.watch('./src/**/*.scss', gulp.series('sass', 'autoprefixer', 'base64', 'minify-css', 'sourcemaps')); 23 | // Javascript stuff 24 | gulp.watch('./src/javascript/*.js', gulp.series('minify-js')); 25 | // Fontello 26 | gulp.watch('./src/config.json', gulp.series('fontello-import', 'fontello-deploy')); 27 | }); 28 | 29 | // Chain of tasks to build the CSS 30 | // FIXME : doesn't work ! 31 | gulp.task('build-css', function(done) { 32 | gulp.series('sass', 'autoprefixer', 'base64', 'minify-css', 'sourcemaps'); 33 | done(); 34 | }); 35 | 36 | // Chain of tasks to build the Javascript (well, only one task at the moment) 37 | // FIXME : doesn't work ! 38 | gulp.task('build-js', function(done) { 39 | gulp.series('minify-js'); 40 | done(); 41 | }); 42 | 43 | // Compile the main SASS file to CSS 44 | gulp.task('sass', function() { 45 | return gulp.src('./src/*.scss') 46 | .pipe(sass().on('error', sass.logError)) 47 | .pipe(gulp.dest('./dist/css')); 48 | }); 49 | 50 | // Add vendor prefixes to the compiled CSS file 51 | gulp.task('autoprefixer', function() { 52 | return gulp.src('./dist/css/*.css') 53 | .pipe(postcss( 54 | [autoprefixer()] 55 | )) 56 | .pipe(gulp.dest('./dist/css')); 57 | }); 58 | 59 | // Converts all data found within a stylesheet into base64-encoded data URI strings 60 | gulp.task('base64', function() { 61 | return gulp.src('./dist/css/wireframes.css') 62 | .pipe(cssBase64({ 63 | maxWeightResource: 131072, 64 | //baseDir: "./src" // doesn't seem to work ? 65 | })) 66 | .pipe(gulp.dest('./dist/css')); 67 | }); 68 | 69 | // Minify the compiled CSS file in a new .min.css file 70 | gulp.task('minify-css', function() { 71 | return gulp.src('./dist/css/wireframes.css') 72 | .pipe(cleanCSS({ 73 | compatibility: 'ie8' 74 | })) 75 | .pipe(rename({ 76 | suffix: ".min" 77 | })) 78 | .pipe(gulp.dest('./dist/css')); 79 | }); 80 | 81 | // Minify the JS file in a new .min.js file 82 | gulp.task('minify-js', function() { 83 | return gulp.src('./src/javascript/*.js') 84 | .pipe(minify({ 85 | ext: { 86 | min: '.min.js' 87 | } 88 | })) 89 | .pipe(gulp.dest('./dist/javascript')); 90 | }); 91 | 92 | // Create sourcemaps for the compiled CSS 93 | gulp.task('sourcemaps', function() { 94 | return gulp.src('./dist/css/*.css') 95 | .pipe(sourcemaps.init()) 96 | .pipe(sourcemaps.write('.')) 97 | .pipe(gulp.dest('./dist/css')); 98 | }); 99 | 100 | // Import fontello SVG and CSS files in a temp directory from the config.json 101 | gulp.task('fontello-import', function () { 102 | return gulp.src('./src/config.json') 103 | .pipe(plugins.fontello({ 104 | font: 'font', // Destination dir for Fonts and Glyphs 105 | css: 'css' // Destination dir for CSS Styles 106 | })) 107 | //.pipe(plugins.print()) 108 | .pipe(gulp.dest('./src/fontello_tmp')); 109 | }); 110 | 111 | // Move selected fontello files from the temp directory to the working directory 112 | // FIXME : In the CSS the path is wrong, and we don't need svg, ttf and eot versions. 113 | gulp.task('fontello-deploy', function (done) { 114 | gulp.src("./src/fontello_tmp/font/fontello.woff") 115 | //.pipe(rename("fontello.woff")) 116 | .pipe(gulp.dest('./src/fonts')); 117 | gulp.src("./src/fontello_tmp/font/fontello.woff2") 118 | //.pipe(rename("fontello.woff2")) 119 | .pipe(gulp.dest('./src/fonts')); 120 | gulp.src("./src/fontello_tmp/css/fontello.css") 121 | .pipe(rename("_fontello.scss")) 122 | .pipe(gulp.dest('./src')); 123 | gulp.src('./src/fontello_tmp', {read: false}) 124 | .pipe(clean()); 125 | done(); 126 | }); 127 | 128 | // Go go go ! 129 | gulp.task('default', gulp.series('watch')); 130 | -------------------------------------------------------------------------------- /images/css-wireframes-logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/images/css-wireframes-logo-32.png -------------------------------------------------------------------------------- /images/css-wireframes-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 44 | 47 | 48 | 50 | 51 | 53 | image/svg+xml 54 | 56 | 57 | 58 | 59 | 60 | 66 | 75 | 81 | 82 | 86 | 95 | 104 | 107 | 116 | 120 | 126 | 132 | 133 | 134 | 143 | 152 | 158 | 164 | 169 | 174 | 183 | 184 | 185 | -------------------------------------------------------------------------------- /images/css-wireframes-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/images/css-wireframes-screenshot.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "css-wireframes", 3 | "version": "1.0.0", 4 | "description": "A CSS framework to quickly design responsive wireframes directly in HTML.", 5 | "keywords": [ 6 | "css", 7 | "wireframe" 8 | ], 9 | "license": "GPL-3.0", 10 | "author": "Les Développements Durables", 11 | "repository": { 12 | "type": "git", 13 | "url": "https://github.com/LesDeveloppementsDurables/css-wireframes.git" 14 | }, 15 | "devDependencies": { 16 | "gulp": "github:gulpjs/gulp#4.0", 17 | "gulp-autoprefixer": "^3.1.1", 18 | "gulp-clean": "^0.3.2", 19 | "gulp-clean-css": "^3.0.4", 20 | "gulp-css-base64": "^1.3.4", 21 | "gulp-fontello": "^0.4.6", 22 | "gulp-load-plugins": "^1.5.0", 23 | "gulp-minify": "0.0.15", 24 | "gulp-postcss": "^6.4.0", 25 | "gulp-rename": "^1.2.2", 26 | "gulp-sass": "^3.1.0", 27 | "gulp-sourcemaps": "^2.6.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/_base.scss: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | color: $color-text; 4 | font-family: $font-family-base; 5 | font-size: $font-size-base; 6 | } 7 | 8 | a, a:visited { 9 | color: $color-link; 10 | text-decoration: underline; 11 | &:hover { 12 | color: $color-link-hover; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/_fontello.scss: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'fontello'; 3 | src: url('../../src/fonts/fontello.woff2?86954399') format('woff2'), 4 | url('../../src/fonts/fontello.woff?86954399') format('woff'); 5 | font-weight: normal; 6 | font-style: normal; 7 | } 8 | /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ 9 | /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ 10 | /* 11 | @media screen and (-webkit-min-device-pixel-ratio:0) { 12 | @font-face { 13 | font-family: 'fontello'; 14 | src: url('../../src/fonts/fontello.svg?86954399#fontello') format('svg'); 15 | } 16 | } 17 | */ 18 | 19 | [class^="wf-icon--"]:before, [class*=" wf-icon--"]:before { 20 | font-family: "fontello"; 21 | font-style: normal; 22 | font-weight: normal; 23 | speak: none; 24 | 25 | display: inline-block; 26 | text-decoration: inherit; 27 | width: 1em; 28 | margin-right: .2em; 29 | text-align: center; 30 | font-size: 1.5em; 31 | /* opacity: .8; */ 32 | 33 | /* For safety - reset parent styles, that can break glyph codes*/ 34 | font-variant: normal; 35 | text-transform: none; 36 | 37 | /* fix buttons height, for twitter bootstrap */ 38 | line-height: 1em; 39 | 40 | /* Animation center compensation - margins should be symmetric */ 41 | /* remove if not needed */ 42 | margin-left: .2em; 43 | 44 | /* you can be more comfortable with increased icons size */ 45 | /* font-size: 120%; */ 46 | 47 | /* Font smoothing. That was taken from TWBS */ 48 | -webkit-font-smoothing: antialiased; 49 | -moz-osx-font-smoothing: grayscale; 50 | 51 | /* Uncomment for 3D effect */ 52 | /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ 53 | } 54 | 55 | .wf-icon--add:before { content: '\e800'; } /* '' */ 56 | .wf-icon--audio:before { content: '\e802'; } /* '' */ 57 | .wf-icon--calendar:before { content: '\e803'; } /* '' */ 58 | .wf-icon--camera:before { content: '\e804'; } /* '' */ 59 | .wf-icon--checkbox:before { content: '\e806'; } /* '' */ 60 | .wf-icon--close:before { content: '\e807'; } /* '' */ 61 | .wf-icon--cloud:before { content: '\e808'; } /* '' */ 62 | .wf-icon--comment:before { content: '\e809'; } /* '' */ 63 | .wf-icon--connect:before { content: '\e80a'; } /* '' */ 64 | .wf-icon--danger:before { content: '\e80b'; } /* '' */ 65 | .wf-icon--document:before { content: '\e80c'; } /* '' */ 66 | .wf-icon--document-view:before { content: '\e80d'; } /* '' */ 67 | .wf-icon--enlarge:before { content: '\e80e'; } /* '' */ 68 | .wf-icon--envelope:before { content: '\e80f'; } /* '' */ 69 | .wf-icon--globe:before { content: '\e810'; } /* '' */ 70 | .wf-icon--graph:before { content: '\e811'; } /* '' */ 71 | .wf-icon--help:before { content: '\e812'; } /* '' */ 72 | .wf-icon--home:before { content: '\e813'; } /* '' */ 73 | .wf-icon--info:before { content: '\e814'; } /* '' */ 74 | .wf-icon--marker:before { content: '\e815'; } /* '' */ 75 | .wf-icon--menu:before { content: '\e816'; } /* '' */ 76 | .wf-icon--mobile:before { content: '\e817'; } /* '' */ 77 | .wf-icon--pencil:before { content: '\e818'; } /* '' */ 78 | .wf-icon--play:before { content: '\e819'; } /* '' */ 79 | .wf-icon--printer:before { content: '\e81a'; } /* '' */ 80 | .wf-icon--refresh:before { content: '\e81b'; } /* '' */ 81 | .wf-icon--search:before { content: '\e81c'; } /* '' */ 82 | .wf-icon--settings:before { content: '\e81d'; } /* '' */ 83 | .wf-icon--time:before { content: '\e81e'; } /* '' */ 84 | .wf-icon--user:before { content: '\e81f'; } /* '' */ 85 | .wf-icon--users:before { content: '\e820'; } /* '' */ 86 | .wf-icon--view:before { content: '\e821'; } /* '' */ 87 | .wf-icon--view-list:before { content: '\e822'; } /* '' */ 88 | .wf-icon--view-thumbnail:before { content: '\e823'; } /* '' */ 89 | .wf-icon--arrows:before { content: '\e824'; } /* '' */ 90 | .wf-icon--chat:before { content: '\e825'; } /* '' */ 91 | .wf-icon--angle-bottom:before { content: '\e826'; } /* '' */ 92 | .wf-icon--angle-double-bottom:before { content: '\e827'; } /* '' */ 93 | .wf-icon--angle-double-left:before { content: '\e828'; } /* '' */ 94 | .wf-icon--angle-double-right:before { content: '\e829'; } /* '' */ 95 | .wf-icon--angle-double-top:before { content: '\e82a'; } /* '' */ 96 | .wf-icon--angle-left:before { content: '\e82b'; } /* '' */ 97 | .wf-icon--angle-right:before { content: '\e82c'; } /* '' */ 98 | .wf-icon--angle-top:before { content: '\e82d'; } /* '' */ 99 | .wf-icon--arrow-left:before { content: '\e82f'; } /* '' */ 100 | .wf-icon--arrow-right:before { content: '\e830'; } /* '' */ 101 | .wf-icon--arrow-top:before { content: '\e831'; } /* '' */ 102 | .wf-icon--deny:before { content: '\e832'; } /* '' */ 103 | .wf-icon--arrow-bottom:before { content: '\e833'; } /* '' */ -------------------------------------------------------------------------------- /src/_fonts.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Line text 3 | */ 4 | @font-face { 5 | font-family: 'redacted'; 6 | src: url('../../src/fonts/redacted-regular.woff2') format('woff2'), 7 | url('../../src/fonts/redacted-regular.woff') format('woff'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | /** 13 | * Blocky font 14 | */ 15 | /* 16 | @font-face { 17 | font-family: 'blokkneue'; 18 | src: url('../../src/fonts/blokkneue-regular.woff2') format('woff2'), 19 | url('../../src/fonts/blokkneue-regular.woff') format('woff'); 20 | font-weight: normal; 21 | font-style: normal; 22 | } 23 | */ 24 | 25 | /** 26 | * Cursive font 27 | */ 28 | @font-face { 29 | font-family: 'kalam'; 30 | src: url('../../src/fonts/kalam-regular.woff2') format('woff2'), 31 | url('../../src/fonts/kalam-regular.woff') format('woff'); 32 | font-weight: normal; 33 | font-style: normal; 34 | } 35 | -------------------------------------------------------------------------------- /src/_helpers.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Margins 3 | * 4 | * Add margins to any block 5 | * 6 | * @example 7 | *
8 | *
9 | *
10 | * 11 | * @note 12 | * We specifically add .wf-block to ensure .wf-margin has priority 13 | */ 14 | .wf-margin, 15 | [class].wf-margin // for priority 16 | { 17 | &--all { 18 | margin: $gutter-horizontal $gutter-vertical; 19 | &--large { 20 | margin: $gutter-horizontal * 2 $gutter-vertical * 2; 21 | } 22 | } 23 | &--left { 24 | margin-left: $gutter-horizontal; 25 | &--large { 26 | margin-left: $gutter-horizontal * 2; 27 | } 28 | } 29 | &--top { 30 | margin-top: $gutter-vertical; 31 | &--large { 32 | margin-top: $gutter-vertical * 2; 33 | } 34 | } 35 | &--right { 36 | margin-right: $gutter-horizontal; 37 | &--large { 38 | margin-right: $gutter-horizontal * 2; 39 | } 40 | } 41 | &--bottom { 42 | margin-bottom: $gutter-vertical; 43 | &--large { 44 | margin-bottom: $gutter-vertical * 2; 45 | } 46 | } 47 | } 48 | 49 | /** 50 | * Paddings 51 | * 52 | * Add paddings to any block 53 | * 54 | * @example 55 | *
56 | *
57 | *
58 | * 59 | * @note 60 | * We specifically add .wf-block to ensure .wf-padding has priority 61 | */ 62 | .wf-padding, 63 | [class].wf-padding // for priority 64 | { 65 | &--all { 66 | padding: $gutter-horizontal $gutter-vertical; 67 | &--large { 68 | padding: $gutter-horizontal * 2 $gutter-vertical * 2; 69 | } 70 | } 71 | &--left { 72 | padding-left: $gutter-horizontal; 73 | &--large { 74 | padding-left: $gutter-horizontal * 2; 75 | } 76 | } 77 | &--top { 78 | padding-top: $gutter-vertical; 79 | &--large { 80 | padding-top: $gutter-vertical * 2; 81 | } 82 | } 83 | &--right { 84 | padding-right: $gutter-horizontal; 85 | &--large { 86 | padding-right: $gutter-horizontal * 2; 87 | } 88 | } 89 | &--bottom { 90 | padding-bottom: $gutter-vertical; 91 | &--large { 92 | padding-bottom: $gutter-vertical * 2; 93 | } 94 | } 95 | } 96 | 97 | /** 98 | * Hide en element 99 | * 100 | * Does not use display: none; so you can have animations 101 | */ 102 | .wf-hidden, 103 | [class].wf-hidden // for priority 104 | { 105 | opacity: 0; 106 | overflow: hidden; 107 | width: 0; 108 | max-width: 0; 109 | height: 0; 110 | max-height: 0; 111 | //flex-basis: 0%; 112 | padding: 0; 113 | margin: 0; 114 | line-height: 0; 115 | } 116 | 117 | /** 118 | * Force an aspect ratio for a block level element 119 | * 120 | * If any, the content **must** be in a .wf-wrapper 121 | * 122 | * @example 123 | *
124 | *
some content
125 | *
126 | */ 127 | [class*=wf-ratio], 128 | [class][class*=wf-ratio] // for priority 129 | { 130 | @include aspect-ratio-common; 131 | } 132 | .wf-ratio, 133 | [class].wf-ratio // for priority 134 | { 135 | /* square */ 136 | &--1-1 { 137 | @include aspect-ratio-variant(1, 1); 138 | } 139 | /* landscape */ 140 | &--4-1 { 141 | @include aspect-ratio-variant(4, 1); 142 | } 143 | &--3-1 { 144 | @include aspect-ratio-variant(3, 1); 145 | } 146 | &--2-1 { 147 | @include aspect-ratio-variant(2, 1); 148 | } 149 | &--16-9 { 150 | @include aspect-ratio-variant(16, 9); 151 | } 152 | &--4-3 { 153 | @include aspect-ratio-variant(4, 3); 154 | } 155 | &--3-2 { 156 | @include aspect-ratio-variant(3, 2); 157 | } 158 | /* portrait */ 159 | &--1-4 { 160 | @include aspect-ratio-variant(1, 4); 161 | } 162 | &--1-3 { 163 | @include aspect-ratio-variant(1, 3); 164 | } 165 | &--1-2 { 166 | @include aspect-ratio-variant(1, 2); 167 | } 168 | &--9-16 { 169 | @include aspect-ratio-variant(9, 16); 170 | } 171 | &--3-4 { 172 | @include aspect-ratio-variant(3, 4); 173 | } 174 | &--2-3 { 175 | @include aspect-ratio-variant(2, 3); 176 | } 177 | } 178 | 179 | /** 180 | * Sets the width of a block level element in % 181 | * 182 | * @example 183 | *
184 | */ 185 | .wf-width, 186 | [class].wf-width // for priority 187 | { 188 | /* 5 to 100, in 5 increments */ 189 | @for $i from 1 through 20 { 190 | $width: $i*5; 191 | &--#{$width}p { 192 | width: $width + %; 193 | } 194 | } 195 | } 196 | 197 | /** 198 | * Sets the width of a block level element in rem 199 | * 200 | * @example 201 | *
202 | */ 203 | .wf-width, 204 | [class].wf-width // for priority 205 | { 206 | /* 5 to 30, in 5 increments */ 207 | @for $i from 1 through 6 { 208 | $width: $i*5; 209 | &--#{$width}r { 210 | width: $width + rem; 211 | } 212 | } 213 | } 214 | 215 | /** 216 | * Make a block level item's position relative 217 | */ 218 | .wf-relative { 219 | position: relative; 220 | } 221 | 222 | /** 223 | * Horizontal separator 224 | * 225 | * [FIXME] should this be in its own module ? 226 | * 227 | * @example 228 | *
229 | */ 230 | .wf-separator { 231 | border: 1px dotted $color-default; 232 | border-width: 1px 0 0; 233 | margin: $gutter-vertical*2 0; 234 | } 235 | -------------------------------------------------------------------------------- /src/_mixins.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Mixins 3 | */ 4 | 5 | /** 6 | * Add a border 7 | * 8 | **/ 9 | @mixin wf-border($width: 1px) { 10 | border: #{$width} dotted $color-default; 11 | } 12 | 13 | /** 14 | * Add a diagonal background image 15 | */ 16 | @mixin background-crossed($color: $color-default) { 17 | background-image: 18 | linear-gradient(to top left, 19 | rgba($color, 0) 0%, 20 | rgba($color, 0) calc(50% - 0.8px), 21 | rgba($color, 1) 50%, 22 | rgba($color, 0) calc(50% + 0.8px), 23 | rgba($color, 0) 100%), 24 | linear-gradient(to top right, 25 | rgba($color, 0) 0%, 26 | rgba($color, 0) calc(50% - 0.8px), 27 | rgba($color, 1) 50%, 28 | rgba($color, 0) calc(50% + 0.8px), 29 | rgba($color, 0) 100%); 30 | background-size: 100% 100%; 31 | } 32 | 33 | /** 34 | * Force an aspect ratio 35 | * 36 | * https://css-tricks.com/snippets/sass/maintain-aspect-ratio-mixin/ 37 | * 38 | * By default, it produces a 1:1 aspect ratio 39 | * For other ratios, it must be used in conjonction with aspect-ratio-variant 40 | * 41 | * The element must have a child wrapping its content 42 | *
43 | *
44 | *
45 | */ 46 | @mixin aspect-ratio-common($content: '.wf-wrapper') { 47 | position: relative; 48 | display: block; // ensure to avoid bug in firefox with display: flex 49 | &:before { 50 | display: block; 51 | content: ""; 52 | width: 100%; 53 | padding-top: 100%; 54 | } 55 | > #{$content} { 56 | position: absolute; 57 | top: 0; 58 | left: 0; 59 | right: 0; 60 | bottom: 0; 61 | padding: inherit; 62 | } 63 | } 64 | 65 | /** 66 | * Force an aspect ratio 67 | * 68 | * Must be used in conjonction with aspect-ratio-common 69 | * @see mixin aspect-ratio 70 | */ 71 | @mixin aspect-ratio-variant($width, $height) { 72 | &:before { 73 | padding-top: ($height / $width) * 100%; 74 | } 75 | } -------------------------------------------------------------------------------- /src/_variables.scss: -------------------------------------------------------------------------------- 1 | /* Functional palette */ 2 | $color-default: hsl(220, 10%, 45%); 3 | $color-external: saturate($color-default, 50%); 4 | $color-text: $color-default; 5 | $color-link: saturate($color-text, 25%); 6 | $color-link-hover: saturate($color-link, 50%); 7 | $color-important: darken($color-default, 33%); 8 | 9 | /* Color palette */ 10 | $color-dark: $color-default; 11 | $color-light: lighten($color-default, 50%); 12 | $color-gray: hsl(0, 0%, 60%); 13 | $color-gray-light: hsl(0, 0%, 90%); 14 | $color-red: hsl(6, 100%, 71%); 15 | $color-yellow: hsl(27, 100%, 71%); 16 | $color-green: hsl(120, 65%, 61%); 17 | $color-pink: hsl(326, 65%, 61%); 18 | 19 | /* Gutters */ 20 | $gutter-vertical: 1rem; 21 | $gutter-horizontal: 1rem; 22 | 23 | /* Fonts */ 24 | $font-size-base: 16px; 25 | $font-family-base: 'kalam', cursive; // stuff in the wireframe 26 | $font-family-external: sans-serif; // stuff not belonging to the wireframe 27 | $font-family-code: monospace; // technical stuff 28 | -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "fontello", 3 | "css_prefix_text": "wf-icon--", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "c238c84290d28809515ff3f93a409b0a", 11 | "css": "add", 12 | "code": 59392, 13 | "src": "custom_icons", 14 | "selected": true, 15 | "svg": { 16 | "path": "M775.9 493C706.9 493 608.6 493.6 520.3 496.8 513.7 416.9 515.9 336.3 515.7 254.1 515.6 198 436.3 198 436.5 254.1 436.7 337.5 440.6 419.4 447.2 500.5 372.2 504.8 297.9 511.4 223.1 522 171.6 529.2 171.3 616.2 223.4 608.9 301 598 379 591.3 456.8 587 466.7 670.1 481.3 752.7 502.8 835.7 516.8 889.7 595.6 866.8 581.6 812.6 561.7 736.1 538.5 660 529.1 583.4 614.5 580.5 707 579.9 775.9 579.9 810.4 579.9 810.4 493 775.9 493ZM947.7 324.1C852.9 128.5 667.5 61.7 475.5 60.3 487.4 32.8 476.3-4.5 441.4 0.4 355.4 12.6 275 46.2 207.1 95.6 181 102.3 155.6 109.8 131.1 117.9 100 128.2 96.5 164.4 110.4 186.4 5.7 314-36.4 491.5 36.7 674.6 156.6 974.9 555.2 1089.1 814.2 924.6 1008.6 801.2 1045.7 526.5 947.7 324.1ZM819.8 810.9C644.6 996.5 287.5 915 152.1 720.3 18.3 528 86.8 300.2 240.9 175.9 454.4 121.5 705.3 119.2 849 320.3 953.9 467.3 942.3 681 819.8 810.9Z", 17 | "width": 1000 18 | }, 19 | "search": [ 20 | "add" 21 | ] 22 | }, 23 | { 24 | "uid": "18893ab9542a563d863f8cbd7c7ab6a6", 25 | "css": "audio", 26 | "code": 59394, 27 | "src": "custom_icons", 28 | "selected": true, 29 | "svg": { 30 | "path": "M520.4 14.5C508.2 16.5 496.4 23.4 487.8 36.7 417.1 145.5 323.6 235.7 244.4 337.8 187.7 338.2 131.2 343.7 74.5 344.5 38.6 345.1 23.3 378.1 28.4 406.1 26.9 410.9 25.8 416 25.7 421.9 24.5 529 12.2 634.6 23.4 741-7.8 763.1-11.5 820.8 35.2 830.2 99.4 843.2 161.7 839.3 226.3 832 239.3 830.5 251.4 825.5 260.2 817.2 347.2 879 446.6 919.2 532.1 983.7 557.8 1013.3 618.4 1002.7 618.2 951.6 617.3 650.5 606 349.5 605.1 48.4 604.9-1.6 546.8-12.8 520.4 14.5ZM216.1 732.7C184.3 736.3 152.4 739.2 120.5 738.8 107 641 119.8 541.6 122.7 443.3 163.8 441.3 204.9 438.4 246.1 438.1 258.8 438.1 268.8 433.9 276.3 427.3 290.3 426.5 304.3 420.4 314.6 406.5 375.2 325.3 445.8 252.9 508.8 174.1 511.4 401.4 517.5 628.7 519.7 856.1 443.9 811 362.2 775.8 293.8 719.1 266 696.1 231.4 709.5 216.1 732.7ZM765.7 385.4C710.7 353.7 661.5 440.4 716.4 472 755 494.3 757 553.1 726.3 583.3 680.8 628.2 749.9 699.1 795.3 654.3 870.7 580 858.1 438.7 765.7 385.4ZM820 183.4C759.7 164.2 734.2 261.1 794 280.2 988.8 342.2 883.8 665.6 811.1 790.4 778.7 846.1 863.1 896.5 895.4 841.1 1004.7 653.2 1090.1 269.4 820 183.4Z", 31 | "width": 1000 32 | }, 33 | "search": [ 34 | "audio" 35 | ] 36 | }, 37 | { 38 | "uid": "40d4b9a6c6f4320fa5db358de04da8dc", 39 | "css": "calendar", 40 | "code": 59395, 41 | "src": "custom_icons", 42 | "selected": true, 43 | "svg": { 44 | "path": "M1000 839.4C996.1 657.9 955.6 473.9 905.3 297.5 942.5 290.4 953.1 230.6 908.4 219.2 899.1 216.8 889.7 214.9 880.4 212.8 878.9 208.1 877.6 203.4 876.1 198.8 863.5 157.7 806.6 165.3 796.1 197.4 772.7 194.2 735.4 191.7 711.9 189.7 712.8 187.5 700 185.4 700 182.8 700 151.1 700 151.1 700 151.1 700 129.8 700 82.8 700 82.8 700 16 633.3 16 633.3 82.8 633.3 82.8 633.3 120.7 633.3 151 633.3 162.7 633.3 173.9 633.3 182.8 633.3 183.8 648.4 184.6 648.6 185.6 505.4 179.1 367.8 189 223.9 185.1 223.9 178.6 226 171.9 221.8 165 194.8 119.2 189.8 65.7 162.5 19.6 135.9-25.4 65.2 15.1 91.8 60.2 114.1 97.8 123.3 146.9 140.8 186.6 111 184.2 81.6 183 52 183L51.6 183C27.4 149.6-1.9 190.2 0.1 219.4-0.3 225.2 0.7 227.7 3 232.8 57.8 473.4 62.7 718 91.3 962.1 96.6 1007.2 162.2 1012 172.9 976.8 294.4 974.7 714.9 964.6 942.2 927 970.4 922.4 977.4 897.7 969.7 877.3 986.4 873.6 1000.5 861 1000 839.4ZM167.3 896C160.9 833.3 155.4 770.5 149.9 707.7 210.6 697.3 271.3 690.7 332.2 686.6 343.3 758.4 358.9 828.6 389.8 893.5 315.7 895.2 241.6 895.9 167.3 896ZM255 263.6C244.1 275.1 238.9 292.1 247.8 310 263.2 341.3 274.8 373.8 284.2 406.9 229.2 409.1 174.1 410.6 119 411.2 111.9 359.1 103.2 307.4 92.7 255.8 146.6 261 200.7 263.1 255 263.6ZM669.9 265.5C669.9 265.3 669.8 265 669.8 264.8 718.4 267.7 766.7 273.1 814.6 281.6 823 310.1 831.2 338.8 839.1 367.6 785.2 372.4 731.2 377.1 677.1 381.5 673.4 343 670.6 304.4 669.9 265.5ZM859.6 446.3C873.3 502.6 885.3 559.3 894.8 616.2 888.2 609.8 878.9 605.4 866.8 605.4 814.3 605 762 604 709.8 603 701 555.9 693.1 508.7 686.5 461.3 744.2 456.5 801.9 451.4 859.6 446.3ZM625.8 601.8C553.7 600.8 481.8 600.6 410 603.1 408.8 594.2 407.5 585.3 406.1 576.6 401 545.1 395.3 513.6 388.8 482.4 460.6 478.4 532.3 473.4 604.1 467.8 610.3 512.6 617.6 557.3 625.8 601.8ZM321 607.6C261.5 611.7 202.2 618.3 142.8 627.9 138.7 582.4 134.4 536.9 129.2 491.5 187.1 490.7 244.9 489.2 302.6 486.6 310 526.7 315.6 567.1 321 607.6ZM472.3 875.1C441.4 818.4 429.4 749.7 420.4 682.3 493.8 680.1 567.4 680.7 641 682 653.9 747.5 667.3 813 679.6 878.5 612.2 884.2 544.7 888.2 477.2 890.7 476.7 885.6 475.2 880.4 472.3 875.1ZM760.1 860.4C749.2 801.4 737.1 742.5 725.3 683.6 772.5 684.6 819.6 685.5 866.8 685.8 884.6 685.9 896.3 677.1 902.2 665.2 910.3 723.3 915.8 781.5 917.1 839.5 917.2 843.1 917.7 846.4 918.6 849.5 866 858.2 813.4 864.9 760.8 870.7 760.9 867.4 760.8 864 760.1 860.4ZM587.3 261.6C587.2 262.9 586.9 264.1 587 265.5 587.8 306.6 590.8 347.5 594.7 388.2 519.7 394 444.6 398.9 369.4 402.9 356.6 357.3 340.6 312.5 319.3 269.4 318.2 267.2 316.9 265.4 315.7 263.6 406.3 262.9 497.1 259.9 587.3 261.6Z", 45 | "width": 1000 46 | }, 47 | "search": [ 48 | "calendar" 49 | ] 50 | }, 51 | { 52 | "uid": "b5b48665135c987ac7fd3f5480479884", 53 | "css": "camera", 54 | "code": 59396, 55 | "src": "custom_icons", 56 | "selected": true, 57 | "svg": { 58 | "path": "M999.8 917.7C1000.6 909.8 999.3 901.4 996.2 893.6 956.7 683.8 975 470.6 976.5 258.3 976.7 224 946.6 209.2 920.4 213.8 915.8 212.4 910.9 211.4 905.3 211.4 837.4 211.7 769.5 212.7 701.6 213.9 683.4 174.7 676.8 129.9 674.9 86.4 709.2 64.4 700.5 0 648.6 0 523.4 0 412 1.5 295.3 15.1 275.2 17.5 265.8 29.8 258.8 44.7 250.9 52.5 249.7 63.5 249.7 78.1 249.7 126.8 249.7 175.4 249.7 224.1 183 225.3 115.3 226.3 50.1 226.5 21.6 226.6 4.7 247.5 3 269.5 1.2 275-0.6 281.2 0.2 288.5 22.3 504.4 13.9 721.9 36 937.8 36.4 941.9 37.1 945.7 38.3 949.3 34.6 975.3 49.1 1002.8 82.6 999.8 362.7 974.1 644.7 1005.5 923 960.3 950.1 982.2 1002.3 960.4 999.8 917.7ZM126.3 902.6C109.3 708.7 113.1 513.6 95.8 319.6 357.9 317.5 619.8 306.9 881.9 305.4 879 494.5 869.1 682.9 897.5 870 642.4 910.9 383.3 884.5 126.3 902.6ZM349.7 104.8C399.7 97.3 503.9 94.7 588.2 94 590.6 135.3 600.3 176.7 612.9 216.1 524 218.1 433 220.2 349.7 222.2 349.7 188.7 349.7 142.1 349.7 104.8ZM417.1 392.2C387.7 399 379.2 424.6 385.2 447.1 276.5 522.6 242.8 685.5 357.7 790.6 452.3 877.2 581 885.9 676.7 797.5 751.5 728.2 790.3 606.4 756.7 508.6 707.4 365.8 540.4 363.8 417.1 392.2ZM632.3 706.7C595.9 759.2 531.6 784.2 472.1 756.4 418.4 731.4 379.3 684.9 378.5 624.3 377.7 553 441.1 502.6 507.8 499.9 530 499 544 485.7 549.9 469.4 597.6 471 642.2 486.2 665.5 532.1 693.4 587 664.1 660.7 632.3 706.7Z", 59 | "width": 1000 60 | }, 61 | "search": [ 62 | "camera" 63 | ] 64 | }, 65 | { 66 | "uid": "ed2ddf91efea5129d80c58d4b95e20aa", 67 | "css": "checkbox", 68 | "code": 59398, 69 | "src": "custom_icons", 70 | "selected": true, 71 | "svg": { 72 | "path": "M788 911.2C749.8 702.9 709.8 458.1 752.1 247 753.9 238.1 753 230.1 750.3 223.4 746.2 210 735.8 199.2 718.9 199.4 508.8 201.5 299.9 231.4 89.7 233.6 51.5 234 46.3 289.8 73.9 304.9 73.6 307.1 73.3 309.3 73.3 311.7 73.3 311.7 70.1 740.7 110.5 951.5 110.5 951.5 110.6 951.7 110.6 951.9 106.9 969.5 113.4 988.1 134.5 991.7 307.2 1021.2 474.6 963 647 958.8 691.3 957.7 691.4 882.4 647 883.5 489.5 887.3 332.4 941.7 175 922.1 138.2 721.5 142.2 509 142.1 311.7 142.1 310.2 141.8 308.9 141.7 307.5 320.6 302.1 498.6 280.4 677.5 275.7 646.5 488.7 683.6 723.9 721.7 931.1 730.4 978.8 796.7 958.6 788 911.2ZM18.3 528.8C125.1 645.7 231.9 762.4 338.6 879.3 367.8 911.3 415.2 902.5 436.6 865.5 592.5 595.1 760.7 328.6 979.9 114.6 1040.1 55.9 951.5-40.2 891.8 18.1 665.2 239.3 490 517.2 328.9 796.7 361.5 792 394.2 787.4 426.8 782.8 320.1 666 213.3 549.2 106.6 432.3 49.7 370-38.5 466.5 18.3 528.8L18.3 528.8Z", 73 | "width": 1000 74 | }, 75 | "search": [ 76 | "checkbox" 77 | ] 78 | }, 79 | { 80 | "uid": "b47c5420003f8e5df4eba70d074f9392", 81 | "css": "close", 82 | "code": 59399, 83 | "src": "custom_icons", 84 | "selected": true, 85 | "svg": { 86 | "path": "M719.9 704.1C671 655.4 603.5 588.7 538.9 528.6 590.8 467.4 650.4 413.1 708.5 354.9 748 315.2 692.6 259.7 653.1 299.4 594.2 358.6 539.5 419.6 486.7 481.6 430.6 431.6 373.5 383.9 313.3 338.5 271.7 307.2 210.1 368.6 252.1 400.2 314.7 447.4 374.6 497.8 432.6 549.8 380.9 615.6 332.8 684.3 289.3 758.3 261 806.3 333 845.8 361.3 797.6 401.4 729.5 436.4 656.8 483.9 596 546.3 654.3 609.7 716.8 658.5 765.6 682.8 790 744.3 728.5 719.9 704.1ZM947.7 324.2C852.9 128.5 667.5 61.8 475.5 60.3 487.4 32.9 476.3-4.5 441.4 0.4 355.4 12.6 275 46.2 207.1 95.6 181 102.3 155.6 109.8 131.1 117.9 100 128.2 96.5 164.5 110.4 186.5 5.7 314.1-36.4 491.5 36.7 674.6 156.6 974.9 555.2 1089.1 814.2 924.6 1008.6 801.2 1045.7 526.5 947.7 324.2ZM819.8 810.9C644.6 996.5 287.5 915 152.1 720.3 18.3 528 86.8 300.2 240.9 175.9 454.4 121.5 705.3 119.3 849 320.4 953.9 467.3 942.3 681 819.8 810.9Z", 87 | "width": 1000 88 | }, 89 | "search": [ 90 | "close" 91 | ] 92 | }, 93 | { 94 | "uid": "f14b74ff6171a72a08c151a3b41c45a4", 95 | "css": "cloud", 96 | "code": 59400, 97 | "src": "custom_icons", 98 | "selected": true, 99 | "svg": { 100 | "path": "M619.5 776.5C601.7 787.4 583.4 802.4 564.8 816.3 587.9 683.1 607.4 546.8 578.8 413.3 567.3 359.8 485.5 382.5 496.9 435.9 521 547.8 505.4 663.7 486 776.3 467.8 751.7 445.7 731.6 414.4 724.6 361 712.8 338.4 794.6 391.8 806.4 408.8 810.2 418.5 826.8 427.5 841.3 442.3 865 454.3 890.3 469.5 913.8 477.4 926.1 488.5 931.8 499.9 933.1 507.2 935.7 515.8 936.2 525.3 933.3 576.7 918.1 617.5 877.3 662.4 849.8 708.9 821.1 666.3 747.7 619.5 776.5ZM847.9 266.2C874.8 108.1 659.8 29.3 533.1 125.4 392.9-16.6 205.4 111.7 186.7 293.2 38 282.8-82.8 510.9 72.4 599.1 81.5 604.3 90.4 605.7 98.6 604.5 110 611.1 124.2 613.1 139.1 606.3 218.8 570 322.9 571.3 407.6 586.8 461.1 596.5 484 514.7 430.2 504.9 327.6 486.2 214.1 486.7 115.7 525.3 115.6 525.2 115.4 525.1 115.3 525 34.1 478.9 130.2 341.4 207.2 384.2 242.9 404.1 274.3 371.7 269.5 336.3 254.1 222.9 380.2 44.5 493.3 202.5 512.7 229.7 547.1 229.6 566.5 202.5 623.1 123.9 817.4 153.8 754.9 278.6 740.3 307.8 758.2 341 791.5 342.5 883.8 345.9 921.9 394.9 907.2 488.5 828.8 476.4 734.9 474.1 667 509.2 618.4 534.4 661.4 607.6 709.9 582.5 766.1 553.4 862.2 564.8 921.6 576.8 941 580.8 956.2 572.4 965.4 559.8 970.6 556.2 975.4 551.1 978.8 543.5 1037 416.4 969.3 298.6 847.9 266.2Z", 101 | "width": 1000 102 | }, 103 | "search": [ 104 | "cloud" 105 | ] 106 | }, 107 | { 108 | "uid": "464d78c96ccfcaa9bb4e6ffa35796496", 109 | "css": "comment", 110 | "code": 59401, 111 | "src": "custom_icons", 112 | "selected": true, 113 | "svg": { 114 | "path": "M950 443.7C899.4 455.8 859.6 421.5 819.2 394.9 823.4 387.2 825 377.8 821.9 366.9 786 238 708.1 69 568.6 32.3 565.6 30.3 562.4 28.5 558.6 27.1 109.9-130.8-115.8 437.4 59.4 772.9 137.9 923 308.5 1005.4 474.4 999.7 664.4 993.2 796.4 847.5 851.4 679.4 854.6 669.6 853.9 661 850.7 653.8 874.7 647.1 898.1 639.1 919.1 625.2 964.9 595 985.8 542.7 998.7 492 1006.3 462.4 979.6 436.6 950 443.7ZM873 561.6C848.5 577.7 811.7 581.8 783.8 589.5 748.5 599.2 750 640.7 766.7 658.5 766.7 658.5 766.7 658.5 766.7 658.5 666.7 965.1 294.2 1008.9 123.7 733.3-33.8 478.6 140.4 50.7 451.9 83.8 456.9 96.6 469.6 105.9 488.1 104.1 639.8 89.6 712.2 269.8 745 387.8 746.3 392.3 748.5 396 750.7 399.4 740.5 416.3 741.5 439.9 763.6 452.8 813.4 482 854.8 513.6 905.6 521.8 898.2 537.6 888.1 551.6 873 561.6Z", 115 | "width": 1000 116 | }, 117 | "search": [ 118 | "comment" 119 | ] 120 | }, 121 | { 122 | "uid": "556753d87e7c0b288b00f7d6fc1f9ee7", 123 | "css": "connect", 124 | "code": 59402, 125 | "src": "custom_icons", 126 | "selected": true, 127 | "svg": { 128 | "path": "M828.7 677C802.6 674.5 787.7 689.5 783.2 708.4 736.2 721.3 695.3 747.9 673.4 788.3 560.4 731.4 431 681.4 349.5 584.1 346.7 580.7 343.8 578 340.7 575.8 342.2 566.6 343.4 557.3 343.4 547.7 343.4 531.3 340.7 516.2 336.2 502.1 457 430.1 596.6 395.1 708.2 306.5 709.3 305.5 710.1 304.5 711.1 303.6 741.8 317.9 776.9 324.8 809.9 323 899.3 318 967.3 248.8 967.2 160.9 967 66.1 884 8.8 795.9 0.3 769.9-2.2 754.9 12.7 750.4 31.6 681.2 50.6 624.8 99.4 623.7 178 623.4 200.5 629 220.6 638.5 238.2 531.6 323.1 393 353.8 277.2 424.5 247.3 403.5 210.2 390.7 172.2 387 146.2 384.5 131.2 399.5 126.6 418.3 57.4 437.4 1.1 486.1 0 564.8-1.3 660.2 99.8 714.4 186.2 709.7 227.8 707.4 264.4 690.8 292.1 665.1 385.8 767.7 527.7 820.4 648.5 884.3 652.6 886.5 656.7 887.9 660.8 888.9 680.5 962.9 767.2 1003.9 842.7 999.7 932.1 994.8 1000.1 925.6 1000 837.7 999.8 742.9 916.8 685.6 828.7 677ZM802.8 119.6C815.3 118.9 825.2 114.4 832.8 107.9 852.6 118.4 867 136.2 868.6 161 870.9 195.9 844.4 222.2 809.8 226.3 776.8 230.2 724.8 217.8 722.1 178 719.4 136.7 769.7 121.6 802.8 119.6ZM186.1 613C153 616.9 101.1 604.5 98.4 564.8 95.7 523.4 146 508.3 179.1 506.3 191.6 505.6 201.5 501.1 209 494.6 228.8 505.2 243.2 522.9 244.9 547.7 247.2 582.6 220.6 609 186.1 613ZM842.6 903.1C809.6 907 757.6 894.6 754.9 854.8 752.2 813.5 802.5 798.4 835.7 796.4 848.1 795.6 858 791.2 865.6 784.7 885.4 795.2 899.8 813 901.4 837.7 903.7 872.7 877.2 899 842.6 903.1Z", 129 | "width": 1000 130 | }, 131 | "search": [ 132 | "connect" 133 | ] 134 | }, 135 | { 136 | "uid": "1d9c05c35fd306741508c73f733e6ff1", 137 | "css": "danger", 138 | "code": 59403, 139 | "src": "custom_icons", 140 | "selected": true, 141 | "svg": { 142 | "path": "M527.4 772.8C527.4 801.7 504.3 825.1 475.8 825.1 447.2 825.1 424 801.7 424 772.8 424 743.9 447.2 720.4 475.8 720.4 504.3 720.5 527.4 743.9 527.4 772.8ZM969 280.1C857.9-25.3 500.1-31 236.6 31.8 178.8 45.5 202.4 134.2 259.3 123 62.9 244.8-68.6 469.2 38 705.3 163 982.2 541.8 1093.2 785.6 910.4 971.1 771.3 1048.3 498.1 969 280.1ZM798 769C658.9 943.3 432 935.5 255.8 825 85.5 718.3 66.3 512.9 157.2 347.7 246.9 185.1 430.8 111.4 607 124.4 623.9 125.7 635.8 119 643.3 108.7 735.6 132.9 816.6 185.2 868.6 282.2 950.2 434.5 900.5 640.6 798 769ZM453.2 278.3C464.9 378.6 469.2 483.9 444.4 582.6 428.2 647.4 530.8 661.4 546.8 597.5 573.6 490.8 568.5 373.8 555.8 265.4 548.1 199.1 445.4 212 453.2 278.3Z", 143 | "width": 1000 144 | }, 145 | "search": [ 146 | "danger" 147 | ] 148 | }, 149 | { 150 | "uid": "b651f07173312776d40968177878027c", 151 | "css": "document", 152 | "code": 59404, 153 | "src": "custom_icons", 154 | "selected": true, 155 | "svg": { 156 | "path": "M999 926C944.8 649.7 895.3 374 888.6 92.1 938.2 78.4 935.2-4 878.3 0.2 626 18.4 366.7 91.3 112.7 65.8 100.7 23.9 32.4 12.1 23.1 63.3 22.7 65.8 22.4 68.3 21.9 70.8 2.3 87.9-3.7 119.1 12.1 137-22.4 409.7 22.2 683.1 79.6 950.9 79.8 951.7 80.1 952.3 80.3 953.1 78.2 978.1 92.9 1003 124.9 999.7 381.5 973 639.7 982.9 897.1 970.9 903.7 970.6 909.5 969 914.7 966.8 938.2 1004.3 1009.3 978.8 999 926ZM794.9 101.6C801.9 363.6 844.6 620.4 894.1 877.3 651.2 888.5 407.6 880.7 165.3 902.4 113.6 658 72.4 406.6 103.4 157.5 333.9 178.3 565.2 126.3 794.9 101.6ZM237.9 343.6C288.7 358.7 347.8 355.3 400.1 355.9 482 356.9 564.6 354.7 646 345.2 705.4 338.3 706.1 244.5 646 251.5 577.7 259.5 508.8 261.5 440.1 262.2 384.3 262.8 317.1 269.4 262.9 253.2 204.7 235.8 180 326.3 237.9 343.6ZM231.6 582.7C376.4 580.9 519.8 557.3 664.8 568.3 725.3 572.9 724.8 479.2 664.8 474.7 519.9 463.5 376.4 487.1 231.6 489 171 489.8 171 583.5 231.6 582.7ZM269.3 726.5C208.7 727.3 208.6 821 269.3 820.2 414.2 818.3 557.5 793.6 702.5 791.4 763 790.5 763.1 696.8 702.5 697.7 557.5 699.9 414.2 724.6 269.3 726.5Z", 157 | "width": 1000 158 | }, 159 | "search": [ 160 | "document" 161 | ] 162 | }, 163 | { 164 | "uid": "c7fd2b76f376580930e036a595cffd5f", 165 | "css": "document-view", 166 | "code": 59405, 167 | "src": "custom_icons", 168 | "selected": true, 169 | "svg": { 170 | "path": "M262.5 589.8C227.2 585.3 214.4 642.8 252.2 656 432.3 718.7 578.1 790.3 732.8 636.5 735.5 633.8 737.4 630.9 738.9 628 751.8 619 759.1 602.5 748.9 585 642 401.1 323.7 338.7 262.5 589.8ZM478.1 659.3C491 658.2 503.7 654.4 515.5 649.7 542.1 638.9 562.9 620.2 566.1 590.6 568.8 565.5 552.3 542.9 532.8 529.2 496.1 503.3 427.5 502.6 406.5 550 403.8 556.3 402.1 562.6 401.3 568.9 394.5 577.1 391 588.1 395.2 598.1 404.5 620.2 416.5 639.1 437.1 650.5 400.9 640.8 363.9 626.6 325.7 612.1 325.8 611.7 326 611.3 326.1 610.8 369.3 424.7 586.8 477.3 676.8 597.2 610.5 658.6 545.4 670.1 478.1 659.3ZM889.3 27.8C759 35.6 629.4 27.2 499.6 18.1 488.3-2.5 455.1-7.7 442.1 14.1 437 13.7 431.8 13.3 426.7 13 401.9 11.3 391.6 32.7 395.4 51.7 312.6 144.3 199.2 196.9 94.7 261 79.4 270.3 76.4 285.8 80.7 299.1 79.7 302.1 79 305.4 79 309.1 75.2 518.4 99.8 725.9 116.6 934.1 80.1 942.6 81.9 1002.5 122.7 999.9 365.5 984.4 608.7 1006.2 851.5 990.5 883.6 988.5 891.7 950.3 875.6 932.6 879.4 927.5 881.7 920.9 881.6 912.7 877.1 637.3 899 362.5 908.6 87.4 930.6 69.7 924.4 25.6 889.3 27.8ZM419.4 123.9C411.4 177.6 406.3 231.8 401.4 286 333.5 287.1 265.8 279.8 198.2 277.5 276.4 232.3 354.9 187.1 419.4 123.9ZM183 930.3C167.2 734.9 145 540.2 145.7 344 241 342 336.3 357.4 431.9 351.7 451.4 350.6 463.7 337.4 465.4 318.4 472.4 240 478.8 161.7 493.5 84.5 609.4 92.7 725.2 100.3 841.4 96.6 831.7 368.7 810.4 640.3 814.8 912.7 814.9 917.5 815.9 921.6 817.4 925.3 606 936.1 394.4 921.7 183 930.3Z", 171 | "width": 1000 172 | }, 173 | "search": [ 174 | "document-view" 175 | ] 176 | }, 177 | { 178 | "uid": "acd3e723bac6415f5c6e9ff899089987", 179 | "css": "enlarge", 180 | "code": 59406, 181 | "src": "custom_icons", 182 | "selected": true, 183 | "svg": { 184 | "path": "M999 926C944.8 649.7 895.3 374 888.6 92.1 938.2 78.4 935.2-4 878.3 0.2 626 18.4 366.7 91.3 112.7 65.8 100.7 23.9 32.4 12.1 23.1 63.3 22.7 65.8 22.4 68.3 21.9 70.8 2.3 87.9-3.7 119.1 12.1 137-22.4 409.7 22.2 683.1 79.6 950.9 79.8 951.7 80.1 952.3 80.3 953.1 78.2 978.1 92.9 1003 124.9 999.7 381.5 973 639.7 982.9 897.1 970.9 903.7 970.6 909.5 969 914.7 966.8 938.2 1004.3 1009.3 978.8 999 926ZM794.9 101.6C801.9 363.6 844.6 620.4 894.1 877.3 651.2 888.5 407.6 880.7 165.3 902.4 113.6 658 72.4 406.6 103.4 157.5 333.9 178.3 565.2 126.3 794.9 101.6ZM455.7 684.9C394.7 712.5 334.4 716.4 266.4 739.1 279.7 751.2 293.1 763.2 306.4 775.2 319.3 702.6 333 629.9 363.9 561 380.3 524.4 323.4 497.3 306.9 534.2 273.8 608.2 256.3 687.5 241.3 766.9 236.9 790.3 258.4 809.8 281.1 803.3 345.1 785 412.6 773.2 473.6 745.6 509.9 729.1 492.3 668.3 455.7 684.9L455.7 684.9ZM520 358.1C581 330.5 641.3 326.7 709.3 304 695.9 291.9 682.6 279.8 669.3 267.8 656.5 340.4 642.7 413.1 611.8 482.1 595.4 518.7 652.3 545.8 668.8 508.9 701.9 434.9 719.5 355.5 734.4 276.2 738.9 252.7 717.4 233.3 694.7 239.7 630.6 258 563.1 269.9 502.1 297.5 465.8 314 483.4 374.7 520 358.1L520 358.1Z", 185 | "width": 1000 186 | }, 187 | "search": [ 188 | "enlarge" 189 | ] 190 | }, 191 | { 192 | "uid": "d4b497fd160b3786021604b6076c04db", 193 | "css": "envelope", 194 | "code": 59407, 195 | "src": "custom_icons", 196 | "selected": true, 197 | "svg": { 198 | "path": "M14 142.3C173.8 299.8 285 497.9 440.5 658.9 482.7 702.5 549 636 506.9 592.4 351.5 431.4 240.2 233.3 80.4 75.8 37.3 33.2-29.2 99.7 14 142.3L14 142.3ZM486.7 628.7C616 455.8 741 276.4 892.1 121.6 934.4 78.2 868.1 11.7 825.7 55.1 669.1 215.5 539.5 402.1 405.7 581.2 369.3 629.8 450.9 676.7 486.7 628.7L486.7 628.7ZM14 109C30.5 357.9 16.2 647.9 98.3 886.1 117.9 943.1 208.6 918.6 188.8 861.1 109.7 631.2 123.9 349.7 108 109 104 48.8 10 48.4 14 109L14 109ZM798.2 88.4C815.8 358.9 876.9 623.9 894.5 894.3 898.4 954.5 992.4 954.9 988.4 894.3 970.8 623.8 909.7 358.8 892.1 88.4 888.2 28.2 794.2 27.8 798.2 88.4L798.2 88.4ZM188.8 968.8C208 922.3 515.1 911.6 572.4 906.7 697.7 896.1 829.8 884.7 955.2 900 1015.3 907.3 1014.6 813.2 955.2 805.9 785.2 785.2 604.1 807 435 826.2 341.4 836.9 142 837.8 98.3 943.8 75.1 999.9 166.1 1024 188.8 968.8L188.8 968.8ZM93.9 154.4C338.9 97.8 603.4 94.2 844.8 94.1 879.3 94 879.3 0 844.8 0 568.9 0.1 325.4 5.2 72.3 63.7 13.3 77.3 34.9 168 93.9 154.4L93.9 154.4Z", 199 | "width": 1000 200 | }, 201 | "search": [ 202 | "envelope" 203 | ] 204 | }, 205 | { 206 | "uid": "cf7d94a8a8cf3b653b88aff29d2718aa", 207 | "css": "globe", 208 | "code": 59408, 209 | "src": "custom_icons", 210 | "selected": true, 211 | "svg": { 212 | "path": "M998.2 402.1C982.2 206.7 845.3 104.2 680 51.7 674.8 42.2 665.8 34.3 652.1 30.7 603.3 17.9 555.9 13 510 14.5 436.7 4.4 363.9 0.6 298.4 0 247.3-0.5 239.5 66 274.8 87 169.4 152.9 85.6 258.2 35.2 382.8-27.2 537.2-2.6 683.2 77.6 794.8 76.8 797.6 75.9 800.6 75.1 803.4 63.2 843.6 103.1 867.7 134.4 859.4 199.9 921 285.3 966.6 383.8 988.4 542.6 1023.6 688 975.8 797.7 882.5 801.5 880 805 877 808.1 873.6 936.5 758.6 1012.8 580.3 998.2 402.1ZM523.3 107.3C588 116.6 651.4 132.3 708.4 158.6 684.5 178.6 659.6 196.4 630.8 209.5 600.8 223.2 604.3 261.8 621.4 282.9 700.6 381.3 606.9 429.7 544.1 501.9 530 518.1 518.3 535 508.5 552.7 505.6 541.6 502.1 530.7 499.9 520.3 485.6 450 460.6 401.9 418.6 353.3 483.3 279.4 465.3 197.1 408.8 124.9 444.5 113.2 482.9 107.2 523.3 107.3ZM224.7 834.1C206.5 820.4 190.8 804.8 177 788.1 189.3 745 204.2 696.7 228 657.7 225.6 716.6 217.3 777.6 224.7 834.1ZM774.7 768.8C753.6 725.9 755.4 675.9 769.2 627.6 781.4 661.6 797.1 694.6 815.8 727.2 803 741.8 789.3 755.7 774.7 768.8ZM876.2 641.6C852 591.7 836.8 540.3 834.9 482 833.4 433.7 773.6 420.7 747.5 458.4 675.1 563 632.9 714 699.1 826.3 618.9 876.6 526.5 905.6 438.3 902.1 403.9 900.7 372.7 896 344.1 888.9 342.7 885.7 341.1 882.5 338.8 879.2 306.9 832.6 317.9 770.6 321.4 717.2 325.4 657.9 324.9 600.6 313.9 542.1 307.9 510.4 270.1 502.1 245 514.2 183.1 543.9 145.3 605.4 118.4 671.5 72.5 496.9 158.5 270.4 324.3 165.3 365.4 206.4 396.2 256.8 324.5 318.4 305.7 334.7 306.9 368 324.5 384.5 406.2 460.5 427.4 534.8 393.9 634.8 369.4 707.7 456.6 742.4 508.5 759.3 536.3 768.3 569.7 743.8 567.8 714.2 559.5 584.9 659.2 531.9 726.9 439.2 769 381.5 753.7 319.5 721.7 265.4 743.3 251 763.6 234.7 783.2 217.4 786 215.5 788.8 213.2 791.5 210.4 791.8 210.1 792 209.8 792.3 209.6 821.9 233.2 848.2 261.6 869.6 295.9 943.1 413.4 933 536.9 876.2 641.6Z", 213 | "width": 1000 214 | }, 215 | "search": [ 216 | "globe" 217 | ] 218 | }, 219 | { 220 | "uid": "018731d4ef37582a5aa6eb136caccfc6", 221 | "css": "graph", 222 | "code": 59409, 223 | "src": "custom_icons", 224 | "selected": true, 225 | "svg": { 226 | "path": "M941.5 770.2C719.4 826.3 488 813.8 264.9 853.3 264.4 839.7 264 826.2 263.4 812.6 506.5 753 713.4 477.9 792.1 239.3 801.6 262.4 812.5 284.6 825.3 304.4 857.8 354.1 939.3 308.7 906.6 258.6 871.7 205.3 853.7 113.8 838 53.1 832.8 33.3 813.2 0 792.6 0 787.7 0 782.8 0 777.9 0 761.6 0 745.4 28.4 737.3 42.4 694.1 116.9 635.5 185.4 568.6 240 522 278.1 589 348.1 635.1 310.4 650.7 297.6 665.6 286.5 680.2 273 601.6 460.1 441.4 663 257.8 716.3 243.2 499.1 219.2 282.8 238 64.9 243.1 6 148.9 6.7 143.9 65.2 124.7 287.6 150 508.9 164.5 730.6 128.9 730.5 92.9 724.6 56.7 711 0 689.6-24.3 778.4 31.7 799.5 78.2 817.1 124.5 824.7 169.9 824.4 170.7 840.7 170.9 857 171.4 873.2 134.3 882.7 97.5 894.1 61.1 908.2 5.3 929.6 29.6 1018.4 86.1 996.6 119.3 983.9 152.9 973.3 186.8 964.3 210 985.7 255.7 979.8 265.4 946.5 495.8 901.5 736.6 916.7 966.5 858.6 1025.2 843.8 1000.3 755.3 941.5 770.2Z", 227 | "width": 1000 228 | }, 229 | "search": [ 230 | "graph" 231 | ] 232 | }, 233 | { 234 | "uid": "048cf0c59e6d8424aa5d2b7b22c14480", 235 | "css": "help", 236 | "code": 59410, 237 | "src": "custom_icons", 238 | "selected": true, 239 | "svg": { 240 | "path": "M527.4 772.8C527.4 801.7 504.3 825.1 475.8 825.1 447.2 825.1 424 801.7 424 772.8 424 743.9 447.2 720.4 475.8 720.4 504.3 720.5 527.4 743.9 527.4 772.8ZM376.9 395.7C399.8 301.9 611.5 329.9 592.8 442.8 585.8 485 511.1 481.4 480.5 496.6 432 520.7 421.1 568.5 434.7 618.4 450.7 677.1 540.7 652.1 524.7 593.3 518.1 569.4 547.4 573.5 571.8 568 603.6 560.8 630.3 548.2 653.1 524.6 712.9 462.7 684.8 367.3 638.4 308.5 555.1 203 320.3 233.7 287 370.6 272.6 429.7 362.5 454.8 376.9 395.7L376.9 395.7ZM969 280.1C857.9-25.3 500.1-31 236.6 31.8 178.8 45.5 202.4 134.2 259.3 123 62.9 244.8-68.6 469.2 38 705.3 163 982.2 541.8 1093.2 785.6 910.4 971.1 771.3 1048.3 498.1 969 280.1ZM798 769C658.9 943.3 432 935.5 255.8 825 85.5 718.3 66.3 512.9 157.2 347.7 246.9 185.1 430.8 111.4 607 124.4 623.9 125.7 635.8 119 643.3 108.7 735.6 132.9 816.6 185.2 868.6 282.2 950.2 434.5 900.5 640.6 798 769Z", 241 | "width": 1000 242 | }, 243 | "search": [ 244 | "help" 245 | ] 246 | }, 247 | { 248 | "uid": "4cc9d5efad65b62cb53e7e0e6c3b24a9", 249 | "css": "home", 250 | "code": 59411, 251 | "src": "custom_icons", 252 | "selected": true, 253 | "svg": { 254 | "path": "M978.5 378.9C949.9 360.4 921.1 342.1 892.3 324 890.6 317.4 889.3 310.8 887.6 304.1 878.7 269.3 843.3 264.3 819.3 278.2 697.9 202.5 576.5 126.6 461.2 41.8 455.9 18.8 434.2-0.9 408.6 3.7 382.1-8.9 357.8 12.6 352.3 39.2 302.1 82.9 260.1 145.7 221 193.7 150.9 279.7 72.2 367.7 6.6 457.3-22 496.4 51.4 534 51.4 522.3 51.4 634.8 51.4 835 51.4 953.2 51.4 977.2 86.1 1001.8 111.3 999.9 177.7 995.1 247.7 981.1 309.9 957.2 333.8 948 352.6 926.2 345.7 899.7 329.5 836.9 275.5 600.5 410.4 631.4 526.9 658.1 576 825.8 595.3 924.5 599.1 944.2 621.1 959.6 640.5 958.9 735.4 955.4 830.5 940.8 922.3 916.1 942.1 910.9 956.7 891.7 956.5 871.1 955 730 944 590 919.3 451.8 923.5 454.5 927.6 457 931.7 459.7 982.1 492.4 1028.6 411.4 978.5 378.9ZM862.9 834.3C801.9 848.8 740 858.5 677.4 862.9 641 714.8 553.6 547.6 388 533.9 212 519.2 218.2 753.9 242.7 881.6 215.2 890.2 184.6 896.9 151.3 901.4 151.3 750.1 151.3 607 151.3 439.1 151.3 431.5 157.1 424.8 154.7 419 195.6 365.4 240.6 312.2 283 259.8 317.3 217.5 358.4 156.2 403.6 115.8 533.7 212.4 672.7 297 810 382.9 843.2 531.5 859.4 682.1 862.9 834.3Z", 255 | "width": 1000 256 | }, 257 | "search": [ 258 | "home" 259 | ] 260 | }, 261 | { 262 | "uid": "daabbb640f86820a606a117f1f33553f", 263 | "css": "view-thumbnail", 264 | "code": 59427, 265 | "src": "custom_icons", 266 | "selected": true, 267 | "svg": { 268 | "path": "M944.3 838.5C944.1 593.3 944.1 373.9 965.8 145.1 997.3 124.1 1008.7 75.3 965.4 56.1 685.4-68.4 372.1 52.3 81.2 58.9 56.8 59.5 41.1 73.1 33.6 90.4 20.6 105.9 14.7 127.9 25.3 150.9 70.6 249.3 43 409.2 38 513.3 32.9 622.5 31.4 741.4 2.2 847.4-3.5 868 2.4 885 13.8 896.7-10.3 926.7 3.3 985.7 54.7 987.9 355.4 1000.5 666.7 1020.3 961.3 944.9 1025 928.6 1003.5 835.3 944.3 838.5ZM141.3 164C229.7 157 322.5 140.3 415.9 126.1 416.7 242.6 419 359.2 421.9 475.7 330.9 481.3 239.8 484.2 148.4 481.1 148.5 480.6 148.5 480.1 148.6 479.6 153.1 382.5 164.5 265.2 141.3 164ZM107.1 876.2C132.3 785.1 139.4 686.2 143.8 589.4 237.7 592.9 331.2 589.8 424.7 584.1 427.5 686.8 430.5 789.4 433 892 323.3 891.6 213.5 886.4 105.1 881.5 105.8 879.8 106.7 878.2 107.1 876.2ZM533.4 576.7C635.2 569.3 737.1 561.5 839.2 558.5 838 656.3 838.1 756.4 838.1 860.8 740.6 878.9 641.6 887.5 541.9 890.6 539.2 786 536.2 681.4 533.4 576.7ZM860.7 130.9C850.1 237.9 844.5 343.3 841.6 449.9 737.7 453 634.2 460.9 530.6 468.5 527.6 349.5 525.4 230.5 524.7 111.5 640.5 98.6 755 97 860.7 130.9Z", 269 | "width": 1000 270 | }, 271 | "search": [ 272 | "view-thumbnail" 273 | ] 274 | }, 275 | { 276 | "uid": "cc99c61b52a9dc361d3192ae576b2a63", 277 | "css": "view-list", 278 | "code": 59426, 279 | "src": "custom_icons", 280 | "selected": true, 281 | "svg": { 282 | "path": "M938.3 267.3C935.9 267.7 933.6 268 931.1 268.4 924.8 210.5 916.8 152.7 907.3 95 947.1 73.7 939.9-1.1 885.1 0 610.4 6 336.5 95.8 61.7 56.8 7.8 49.1-19.3 121.6 15.7 146.3 14.7 217.8 15.6 289.1 18.1 360.3 6 379.5 6.8 406.8 20.6 423.8 24 492.4 28.8 561 34.9 629.5 31.9 641.5 32.8 653.9 38.2 664.1 45.9 746.4 55.1 828.6 65.8 910.8 68.5 931.9 81.3 927.7 96.8 934.9 82.6 965 99.6 991.5 139.8 991.5 150.7 991.5 164.9 991.5 164.9 991.5 178.4 991.5 188.8 1005 196.5 998 425.1 939.6 657 912.2 893.4 917.3 901.3 917.4 908.1 920.5 914 917.9 937.1 916.3 959.2 902.6 959 871.9 958.8 780.6 957.4 690.5 954.2 599.5 958.9 586.1 958.3 571.4 952.8 558.5 949.9 494.7 946 431.4 940.7 367.8 948.6 366.5 956.5 365.5 964.4 364.1 1026.7 353 1000.3 256.2 938.3 267.3ZM809.7 104.2C819.8 164 828.1 223.9 834.7 284 596.4 318.9 356.2 329.2 115.5 336.9 113.8 278.5 113.2 220.1 113.8 161.6 347.3 177.1 576.8 119.8 809.7 104.2ZM860.5 824.8C624.9 823.4 392.7 860.1 164.3 918.6 164.3 916.1 164.4 913.6 164.1 910.8 154.7 838.4 146.4 765.9 139.2 693.4 380.4 714.9 616 641.4 857.2 632.4 859.1 696.5 860.1 760.6 860.5 824.8ZM853.4 532.1C611.5 542.7 371.7 622.7 130 592.5 125.8 540.8 122.3 489.1 119.6 437.4 362.1 429.4 604 418 844.1 383.6 848.1 433 851 482.6 853.4 532.1Z", 283 | "width": 1000 284 | }, 285 | "search": [ 286 | "view-list" 287 | ] 288 | }, 289 | { 290 | "uid": "858d69ed5c6d0f1ba77b0587da52f485", 291 | "css": "view", 292 | "code": 59425, 293 | "src": "custom_icons", 294 | "selected": true, 295 | "svg": { 296 | "path": "M988.7 426C992.2 412.6 988.7 397.9 974.2 385.8 712.8 167.3 285.4 97.9 38 373.6 37.8 373.9 37.7 374.1 37.6 374.2 16.7 376.7-1.6 391.5 0.1 418.9 33.7 928.3 880.1 927.3 998.3 467.6 1002.8 450.3 997.9 436.1 988.7 426ZM97.2 446.4C99.6 444.6 102 442.5 104.3 439.9 315 205.1 681.5 264.6 905.6 450.2 808.9 788.4 152.8 818.3 97.2 446.4ZM308.1 466C297 473.3 289.3 485.7 290.1 503.4 295.9 641.3 447.1 722.5 569.7 663.5 649 625.3 717.6 528.2 658.2 444.5 573.6 325.6 348.2 326 308.1 466ZM500.1 557.6C499.9 558.2 499.8 558.6 499.6 559 499.8 558.6 499.9 558.1 500.1 557.6ZM576.4 539.7C575 520.2 570.1 498.7 561.5 478.7 563 479.8 564.6 480.8 566 481.9 579 492.4 586.8 505.3 587.3 509.3 588.5 519.9 583.9 529.8 576.4 539.7Z", 297 | "width": 1000 298 | }, 299 | "search": [ 300 | "view" 301 | ] 302 | }, 303 | { 304 | "uid": "0d33f4574ea126d86b8100d70dce9730", 305 | "css": "users", 306 | "code": 59424, 307 | "src": "custom_icons", 308 | "selected": true, 309 | "svg": { 310 | "path": "M411 242.3C385 207.3 349.9 184.2 310.5 169.7 316 166.4 321.2 162.9 325.9 159.2 384.7 113.1 349.1 30.5 287.1 7.7 218.2-17.5 112.1 23.2 64.4 71.8 48.5 87.9 64.8 110.3 82.3 109.7 81.7 135.2 93 159 112.6 175.9 16.9 236.1-15 342.9 6.3 455.5 7.9 464.3 19.2 472.8 28.5 471.7 97.2 464.1 166.3 460.8 235.2 455.9 237.6 457.3 240.4 458.3 243.9 458.9 308.1 467.6 367.3 450.1 431.3 447.6 440.7 447.2 451.9 441.2 453.6 431.4 464.5 364.8 452.3 297.9 411 242.3ZM304 116.8C291.9 136.8 265.9 147.6 239.4 152.8 218.7 150.2 197.7 149.3 176.9 149.7 173 148.6 168.5 148.7 163.4 150.7 162.6 151 161.8 151.4 161 151.7 160.5 151.9 160.1 152 159.7 152.1 150.2 148.9 141.5 143.9 135.7 136.5 108.3 101.5 145.1 80.7 174 72.3 184.5 69.3 189.4 61.7 190.2 53.6 201.8 50.6 213.5 48.3 224.9 46.9 265.5 41.8 333.5 67.6 304 116.8ZM161.1 199.4C186.6 205.1 214.8 203.8 241.9 197.6 289.7 205 333.4 223.5 368.1 261 403.2 299 415.4 354.9 410.7 404.9 390.5 406.9 370.4 410.1 350.3 412.9 347 406.7 340.6 402.4 330.6 403.5 236.6 413.9 142 416.3 48 425.7 35.9 332.1 68.6 241.9 161.1 199.4ZM953.6 242.3C927.7 207.3 892.5 184.2 853.2 169.7 858.6 166.4 863.9 162.9 868.5 159.2 927.4 113.1 891.8 30.5 829.8 7.7 760.9-17.5 654.7 23.2 607 71.8 591.1 87.9 607.4 110.3 625 109.7 624.3 135.2 635.7 159 655.2 175.9 559.6 236.1 527.7 342.9 548.9 455.5 550.6 464.3 561.8 472.8 571.2 471.7 639.9 464.1 709 460.8 777.8 455.9 780.3 457.3 783 458.3 786.6 458.9 850.8 467.6 910 450.1 973.9 447.6 983.3 447.2 994.6 441.2 996.2 431.4 1007.1 364.8 994.9 297.9 953.6 242.3ZM846.7 116.8C834.6 136.8 808.6 147.6 782.1 152.8 761.3 150.2 740.3 149.3 719.5 149.7 715.7 148.6 711.1 148.7 706 150.7 705.1 151 704.5 151.4 703.6 151.7 703.2 151.9 702.7 152 702.3 152.1 692.8 148.9 684.1 143.9 678.3 136.5 650.9 101.5 687.7 80.7 716.7 72.3 727.2 69.3 732.1 61.7 732.8 53.6 744.5 50.6 756.2 48.3 767.6 46.9 808.1 41.8 876.1 67.6 846.7 116.8ZM703.8 199.4C729.3 205.1 757.5 203.8 784.6 197.6 832.4 205 876.1 223.5 910.8 261 945.9 299 958.1 354.9 953.4 404.9 933.2 406.9 913 410.1 892.9 412.9 889.7 406.7 883.2 402.4 873.3 403.5 779.3 413.9 684.7 416.3 590.7 425.7 578.6 332.1 611.3 241.9 703.8 199.4ZM411 770.5C385 735.5 349.9 712.5 310.5 697.9 316 694.6 321.2 691.1 325.9 687.4 384.7 641.3 349.1 558.7 287.1 535.9 218.2 510.7 112.1 551.4 64.4 600 48.5 616.1 64.8 638.5 82.3 637.9 81.7 663.4 93 687.2 112.6 704.1 16.9 764.3-15 871.1 6.3 983.7 7.9 992.4 19.2 1000.9 28.5 999.9 97.2 992.3 166.3 989 235.2 984.1 237.6 985.5 240.4 986.5 243.9 987.1 308.1 995.9 367.3 978.4 431.3 975.8 440.7 975.4 451.9 969.4 453.6 959.6 464.5 893 452.3 826.1 411 770.5ZM304 645C291.9 665.1 265.9 675.8 239.4 681 218.7 678.4 197.7 677.6 176.9 677.9 173 676.8 168.5 677 163.4 678.9 162.6 679.2 161.8 679.6 161 679.9 160.5 680.1 160.1 680.2 159.7 680.3 150.2 677.2 141.5 672.1 135.7 664.7 108.3 629.8 145.1 608.9 174 600.5 184.5 597.5 189.4 589.8 190.2 581.8 201.8 578.7 213.5 576.5 224.9 575.1 265.5 570 333.5 595.8 304 645ZM161.1 727.6C186.6 733.3 214.8 732 241.9 725.9 289.7 733.2 333.4 751.8 368.1 789.2 403.2 827.2 415.4 883.2 410.7 933.2 390.5 935.1 370.4 938.3 350.3 941.2 347 935 340.6 930.6 330.6 931.8 236.6 942.2 142 944.6 48 954 35.9 860.4 68.6 770.1 161.1 727.6ZM953.6 770.5C927.7 735.5 892.5 712.5 853.2 697.9 858.6 694.6 863.9 691.1 868.5 687.4 927.4 641.3 891.8 558.7 829.8 535.9 760.9 510.7 654.7 551.4 607 600 591.1 616.1 607.4 638.5 625 637.9 624.3 663.4 635.7 687.2 655.2 704.1 559.6 764.3 527.7 871.1 548.9 983.7 550.6 992.4 561.8 1000.9 571.2 999.9 639.9 992.3 709 989 777.8 984.1 780.3 985.5 783 986.5 786.6 987.1 850.8 995.9 910 978.4 973.9 975.8 983.3 975.4 994.6 969.4 996.2 959.6 1007.1 893 994.9 826.1 953.6 770.5ZM846.7 645C834.6 665.1 808.6 675.8 782.1 681 761.3 678.4 740.3 677.6 719.5 677.9 715.7 676.8 711.1 677 706 678.9 705.1 679.2 704.5 679.6 703.6 679.9 703.2 680.1 702.7 680.2 702.3 680.3 692.8 677.2 684.1 672.1 678.3 664.7 650.9 629.8 687.7 608.9 716.7 600.5 727.2 597.5 732.1 589.8 732.8 581.8 744.5 578.7 756.2 576.5 767.6 575.1 808.1 570 876.1 595.8 846.7 645ZM703.8 727.6C729.3 733.3 757.5 732 784.6 725.9 832.4 733.2 876.1 751.8 910.8 789.2 945.9 827.2 958.1 883.2 953.4 933.2 933.2 935.1 913 938.3 892.9 941.2 889.7 935 883.2 930.6 873.3 931.8 779.3 942.2 684.7 944.6 590.7 954 578.6 860.4 611.3 770.1 703.8 727.6Z", 311 | "width": 1000 312 | }, 313 | "search": [ 314 | "users" 315 | ] 316 | }, 317 | { 318 | "uid": "6f45080dd131df6d091833372066a5f5", 319 | "css": "user", 320 | "code": 59423, 321 | "src": "custom_icons", 322 | "selected": true, 323 | "svg": { 324 | "path": "M898.6 513.6C841.8 439.5 764.9 390.5 679 359.8 690.9 352.7 702.3 345.3 712.6 337.4 841.2 239.7 763.4 64.6 627.9 16.4 477.3-37.2 245.1 49.1 140.7 152.2 106.1 186.4 141.6 233.8 180.1 232.4 178.7 286.6 203.3 336.9 246.2 372.9 37 500.5-32.7 726.8 13.8 965.5 17.3 984 41.9 1002 62.4 999.8 212.6 983.6 363.6 976.6 514.3 966.3 519.4 969.3 525.7 971.5 533.3 972.5 673.7 991.2 803.2 954.1 943 948.6 963.6 947.8 988.2 935.1 991.7 914.3 1015.6 773.2 988.8 631.3 898.6 513.6ZM664.6 247.6C638.4 290.2 581.6 312.9 523.4 323.9 478.1 318.4 432.2 316.5 386.7 317.4 378.2 315 368.3 315.3 357.2 319.4 355.4 320 353.8 320.9 352 321.5 351 321.9 350 322.2 349.1 322.6 328.3 315.8 309.4 305.1 296.7 289.4 236.9 215.3 317.2 171.1 380.5 153.5 403.4 147.1 414.2 130.8 415.7 113.6 441.3 107.2 466.9 102.5 491.8 99.4 580.4 88.6 729.1 143.2 664.6 247.6ZM352.2 422.7C407.9 434.8 469.8 432 528.9 418.9 633.4 434.5 729 473.8 804.8 553.2 881.6 633.8 908.2 752.2 898 858.3 853.9 862.4 809.8 869.2 765.8 875.2 758.8 862 744.6 852.9 722.9 855.2 517.5 877.4 310.6 882.4 105 902.3 78.7 703.9 150.1 512.7 352.2 422.7Z", 325 | "width": 1000 326 | }, 327 | "search": [ 328 | "user" 329 | ] 330 | }, 331 | { 332 | "uid": "40bd60d24c50b69999cf2f058158ba17", 333 | "css": "time", 334 | "code": 59422, 335 | "src": "custom_icons", 336 | "selected": true, 337 | "svg": { 338 | "path": "M850 493C700 493 645.6 493.6 557.3 496.8 550.8 416.9 534.4 336.3 534.2 254.1 534.1 198.1 445.5 198.1 445.7 254.1 445.9 337.6 445.2 419.4 451.8 500.6 376.7 504.9 380.4 591.3 458.3 587 468.2 670.1 576.2 660 566.8 583.5 658.3 580.4 733.3 580 850 580L850 493 850 493ZM947.7 324.2C852.9 128.5 667.5 61.8 475.6 60.3 487.4 32.9 476.3-4.5 441.4 0.4 355.4 12.6 275 46.3 207.1 95.6 181 102.3 155.6 109.9 131.1 117.9 100 128.2 96.5 164.5 110.4 186.5 5.7 314.1-36.4 491.5 36.7 674.6 156.6 975 555.2 1089 814.2 924.7 1008.6 801.2 1045.7 526.5 947.7 324.2ZM819.8 810.9C644.6 996.5 287.5 915 152 720.3 18.3 528 86.8 300.2 240.9 175.9 454.4 121.6 705.3 119.3 849 320.4 953.9 467.4 942.4 681 819.8 810.9Z", 339 | "width": 1000 340 | }, 341 | "search": [ 342 | "time" 343 | ] 344 | }, 345 | { 346 | "uid": "03c2d52ef106943f7af5092afb2c187d", 347 | "css": "settings", 348 | "code": 59421, 349 | "src": "custom_icons", 350 | "selected": true, 351 | "svg": { 352 | "path": "M986.6 300.4C947.3 258.3 901.4 224.2 859.3 185.4 866.7 174.8 869.9 161.7 865.9 146.5 859.8 123.4 831.8 102.5 808.2 112.6 773.2 127.6 729.4 147.6 691 135.6 670.6 129.2 676.5 76.5 680 55.4 687.8 8.6 636.7 11.6 607.6 29.7 601 25.8 593.2 52.8 583.7 52.8 545.7 52.8 519.1 52.8 490.2 52.8 470.4-13.8 407.9-12.8 402.3 30.3 371.9 49 373.3 86.6 407 101.6 407.4 137.6 403.6 166 387.5 171.9 364.1 180.6 327.1 140.2 299.5 107.7 300.9 105.1 302.3 100.7 303.6 98.1 330.4 42.2 249.4-7.8 222.6 48.2 220.8 51.8 218.5 54.5 216.7 58 203.9 66.7 194.3 81.7 192.5 98.5 164.5 139.7 130.4 176.2 97.1 212.8 88.5 222.3 84.8 232.7 84.2 242.9 50.5 248 23.6 292.9 55.5 324.6 77.8 346.9 117 467.2 70.7 475.7 65.1 474.5 59.1 474.5 53.2 475.5 5.1 473.3-17.7 539.8 16.1 562.6 25.4 605.9 37.3 648.8 41.7 692.9 44.2 717.9 61.1 732.6 80 737.4 92.9 753.3 114 760.5 135.8 745.1 161.8 726.7 192.4 722.9 222.4 732.6 234.6 736.7 236.8 744.6 236.6 754.6 236.5 763.1 230 772.1 225.8 779.1 224.4 781.5 223 783 221.9 783.9 171.3 784.2 166 856.5 205.7 875.9 207.3 877 208.6 878.3 210.4 879.3 259.4 907 303 943.5 341.6 985.2 364.9 1010.5 395.9 1000.1 411.4 978.4 437.1 976.3 451.3 955.2 454.5 930.2 458.9 895.7 480.5 857.1 513.6 845.1 540.5 835.4 550.8 858.6 555.9 882.8 552.6 891.5 551.7 901.4 554.6 912.1 560.9 935.4 588.6 956 612.3 946 651.1 929.8 689.2 911.3 729.6 899.6 742.4 895.9 751 888.3 756.3 879 763.4 871.4 768.2 861.1 768.7 847.7 769.5 827.2 780.3 810.9 794.4 797.3 807.5 784.7 817 787.3 829.4 796.7 849.7 811.9 880.1 801 892.6 780.6 902.3 772.8 909 760.9 909.4 744.5 910.4 694.3 922.6 645.2 923.5 594.9 923.9 571 910.6 556.3 893.7 550.6 836.1 490 846.9 422.4 924 376.6 925 376 925.7 375.3 926.6 374.6 968.6 407.3 1026.5 343.2 986.6 300.4ZM221.8 784C219 786.2 218.4 784.6 221.8 784L221.8 784ZM680.1 814.2C665.6 819.4 651.5 825.1 637.3 831.1 613.8 772.6 562.9 735.7 495 749.8 431.8 762.9 391.3 819.8 372 880.6 351.9 861.7 330.4 844.3 308.2 828.3 333.6 784.3 338 723.1 310.6 685.6 269.7 629.6 191.1 618.6 128.1 641.5 123.3 614.5 117.2 587.8 111.4 561 197.8 522.1 203.3 381.5 149.4 292.1 154.2 289.6 159 286.3 163.5 281.3 191.5 250.6 220.3 219.3 246.3 186 292.9 235.1 354.1 293.6 417.5 270.4 482.1 246.7 498.5 186.1 499.7 119.5 527.2 119.5 558 119.5 583.7 119.5L584 119.5C584 186.1 596.8 199.5 639.4 230.8 675.2 257 723 247.6 767.2 236.1 794.5 264.4 824.5 285.9 854.2 311.2 747 389.9 731 523.6 828 621.4 826.2 645.4 822.9 668.3 820.1 692.1 756.4 688.2 697.5 747.9 680.1 814.2ZM541.2 368.2C503.6 357.5 464.7 371.7 430.8 387.9 421.8 392.1 415.5 399.8 411.8 408.9 401.7 421 393.4 435.5 387.8 452.4 371 502.6 387.4 554.2 418.6 593.5 459.7 645.4 532.7 646.4 573.1 593.3 605.7 550.4 625.2 486.8 606.8 433.3 595.8 401.5 573.2 377.3 541.2 368.2ZM479.5 471.3C479.5 471.3 479.7 471.3 479.8 471.3L479.7 471.3C479.7 471.3 479.7 471.3 479.5 471.3ZM479.7 471.3C479.8 471.3 479.8 471.3 479.8 471.3 479.8 471.3 480 471.3 480.1 471.3 480 471.3 480 471.4 480 471.4 480 471.4 479.8 471.3 479.7 471.3ZM483.4 469.3L483.4 469.3C483.6 469.1 483.4 469.4 482.7 469.9 483 469.7 483.2 469.4 483.4 469.3ZM518.8 464C519.9 465.5 520.3 466.2 518.8 464L518.8 464ZM494.7 537.2C494.4 537.1 494.2 537 493.7 537 494.2 537 494.4 537.1 494.7 537.2L494.7 537.2ZM499.1 537.3C504.3 537.7 502.2 537.8 499.1 537.3L499.1 537.3ZM512.3 512.1C510.9 515.2 509.4 518.4 507.8 521.4 506.2 524.5 504.4 527.3 502.5 530.1 501.9 530.7 501.4 531.3 500.5 532.3 499.7 533.2 498.8 534 497.8 534.8 497.4 535.2 496.7 535.7 496.1 536.1 495.4 535.8 494.7 535.3 494.1 535 493.5 534.4 492.8 533.6 491.7 532.5 490.3 531.2 485.6 525.2 483.9 523.2 482 519.9 479 514.7 478.8 515.4 478 512.8 477.1 510.2 476.5 507.5 476.1 506.2 475.9 505.2 475.6 504.4 475.6 503.7 475.6 502.5 475.5 500.4 474.7 486.4 477.3 479.3 480.8 472.6 481.5 472.5 482 472.2 481.3 471.8 481.4 471.8 481.5 471.7 481.5 471.5 495.9 474.2 508.1 470.6 517.5 463.4 518 465 525.6 466.6 526 468.3 526.2 468.9 533.4 469.1 533.4 469.5 533.4 469.8 533.4 469.9 533.4 470.1 533.4 473.7 525.7 484.4 525.6 488.2 524.4 494.9 519.3 501.6 517.3 508.1 517 508.9 512.9 510.6 512.3 512.1Z", 353 | "width": 1000 354 | }, 355 | "search": [ 356 | "settings" 357 | ] 358 | }, 359 | { 360 | "uid": "a500ecfb237eef3d6890d925c99c055c", 361 | "css": "search", 362 | "code": 59420, 363 | "src": "custom_icons", 364 | "selected": true, 365 | "svg": { 366 | "path": "M985.7 921.3C884.1 816.1 802.2 697.9 716.1 580.3 709.7 571.7 702 566.3 693.8 563.2 770 460.3 817.6 330.8 798.6 208 763.2-20.6 506.2-20.3 329.1 21 264.4 36.1 201.3 58.7 139.4 82.8 101.4 97.6 100.4 144.2 121.4 165.9-6.1 280.5-56.3 450.4 85.8 624.7 216.8 785.5 422.9 804.3 583.7 677.6 691.3 785.6 801.1 891 919 988 965.2 1025.9 1028.8 965.8 985.7 921.3ZM252.8 644.2C145 587.7 62.3 461.7 101.9 341 159.8 164.3 407.1 89.2 570.5 123.6 591.3 128 607.8 119.5 618 106.2 646.5 119.6 670.8 139.9 688.4 169.8 752.5 278.6 671.6 439.5 603.5 525.7 598 532.7 592.2 539.6 586.2 546.3 585.9 546.1 585.7 545.8 585.5 545.7 543.7 503.1 478.9 566.5 516.9 609.9 439.9 666.3 345.3 692.6 252.8 644.2Z", 367 | "width": 1000 368 | }, 369 | "search": [ 370 | "search" 371 | ] 372 | }, 373 | { 374 | "uid": "f34a5502750019195590f6a2826aba74", 375 | "css": "refresh", 376 | "code": 59419, 377 | "src": "custom_icons", 378 | "selected": true, 379 | "svg": { 380 | "path": "M906.2 297.8C891.4 329.8 873.8 357.6 854.9 384.2 865.6 239.4 840.2 79.1 690.5 25.4 445.7-62.4 194.5 89.7 72.5 291-49.1 491.8-16.6 743.9 161.8 898.5 335.6 1049 589 1026.9 743.5 866.9 789 819.8 716 748.9 670.3 796.2 550.9 919.8 397.3 928.6 252.6 840.3 96.4 744.9 82.8 558.6 132.9 404.2 192.2 221.6 373.4 107.1 564.6 101.4 759.1 95.5 766.5 292.5 745.5 436.6 710.2 377 678.7 315.7 656.3 246.6 636.5 185.2 536.1 217.2 556.2 279 596.2 403 661.6 518.8 730.1 629.9 750.3 662.7 798.4 664.3 819.4 632.5 878.8 542.6 949.6 453.1 994.9 355.2 1022 296.9 933.4 239 906.2 297.8Z", 381 | "width": 1000 382 | }, 383 | "search": [ 384 | "refresh" 385 | ] 386 | }, 387 | { 388 | "uid": "8baec4f861a875bd2df450072e946a20", 389 | "css": "printer", 390 | "code": 59418, 391 | "src": "custom_icons", 392 | "selected": true, 393 | "svg": { 394 | "path": "M969.3 306.7C1019.1 298 1005.6 215.8 948.8 213.9 875.2 211.4 818.5 208 718.4 204.5 718.4 152.5 718.4 100.6 718.4 47.8 718.4 21.6 710.4 1.9 684.7 1 528.8-4.5 380.3 14.5 224.4 16.2 212.5 16.3 191.2 21.7 182.2 30.8 168.8 39.4 151.5 56.3 151.5 70.6 151.5 106.3 151.5 149 151.5 180.9 118.1 180.3 96.4 179.5 68.3 167 25 147.7-8.4 193.6 4 226 3.3 231.2 5.7 236.7 6.9 242.7 37 395.1 24.8 559.6 0.6 712-1.5 725.4 2.3 737 8.4 746.3 6.8 766.1 7.4 786.2 32.7 792.4 86.4 805.5 151.5 796.7 184.8 800.7 184.8 858 184.8 913.6 184.8 953.3 184.8 1001.3 249.9 1012.2 275.7 986.4 424.3 956.7 592.6 929.8 742.2 959.7 788.7 969 816.4 915.7 796.7 886.5 797.5 857.5 798.2 828.7 796.3 799.9 824.5 799.3 853.2 799.5 881.2 802 890.8 853 975.4 850 974.7 792.9 974.7 789.8 974.7 786.7 974.6 783.7 984.1 767 984.9 745.8 973.3 731.6 967.8 590 952.8 447.6 969.3 306.7ZM635.1 93.7C635.1 129.2 635.1 164.7 635.1 199.9 501.7 193.7 384.9 188.2 251.5 185.5 251.5 166.6 251.5 136.6 251.5 108.9 401.6 105.6 501.7 93.2 635.1 93.7ZM284.9 888.8C284.9 778.9 284.9 655.2 284.9 551.9 401.6 532.1 534.3 534.3 656 535.2 667.5 595.5 682.5 655.8 690.9 716.4 663.6 736.2 668.1 785.1 701.1 798.2 702.5 818.5 697.6 838.8 697.8 859.2 563.2 844.7 435 863.6 284.9 888.8ZM787.8 707.1C778.3 637.4 764.4 568.1 751.3 499.1 751.1 498.5 750.9 497.9 750.8 497.3 754.9 471.5 739.9 442.1 705.8 442 540.3 441.5 363.6 435.5 201.4 474.1 154.7 485.1 151.5 543.6 184.8 560.8 184.8 585.3 184.8 642 184.8 707.2 151.5 705 123 709.6 87.7 706.7 109.2 562.2 124.6 412.8 103.8 267.8 116.6 269.4 131.8 270.4 144.8 271.3 151.1 274.8 159.7 277 168.7 277.1 404.2 278.5 639.8 294.3 875.1 304 861.4 438.9 872.7 573.5 878.1 708.7 848 706.8 818.1 706.7 787.8 707.1Z", 395 | "width": 1000 396 | }, 397 | "search": [ 398 | "printer" 399 | ] 400 | }, 401 | { 402 | "uid": "782c77172e9439a3a2156e16a252c818", 403 | "css": "play", 404 | "code": 59417, 405 | "src": "custom_icons", 406 | "selected": true, 407 | "svg": { 408 | "path": "M705.2 466.7C590.5 402.5 461.3 362 352.3 287.3 302.4 253.1 254.9 334.9 304.4 368.8 305.4 369.5 306.4 370.1 307.4 370.8 324.5 465.1 328.8 561.2 346.5 655.5 339.3 659 332.2 662.7 325.1 666.1 270.9 692.5 319.3 773.9 373.2 747.6 489.7 690.9 601.3 626.8 704.9 548.3 731.5 528.1 738.6 485.5 705.2 466.7ZM433.3 610.8C423.2 551.3 417.3 491 410 431 467.7 460.8 527.4 486.9 589.1 516.3 540.6 550.4 487.6 581.7 433.3 610.8ZM969 280.1C858-25.3 500.1-31 236.6 31.8 178.8 45.5 202.4 134.2 259.3 123.1 63 244.8-68.6 469.2 38 705.3 163 982.2 541.8 1093.2 785.6 910.4 971.1 771.3 1048.3 498.1 969 280.1ZM797.9 769C658.8 943.3 432 935.5 255.8 825 85.5 718.3 66.2 512.8 157.2 347.7 246.9 185 430.9 111.4 607 124.5 624 125.7 635.9 119 643.2 108.7 735.6 132.8 816.6 185.1 868.6 282.2 950.2 434.5 900.5 640.6 797.9 769Z", 409 | "width": 1000 410 | }, 411 | "search": [ 412 | "play" 413 | ] 414 | }, 415 | { 416 | "uid": "953c997e718b82e7abd2ec2165d90cdb", 417 | "css": "pencil", 418 | "code": 59416, 419 | "src": "custom_icons", 420 | "selected": true, 421 | "svg": { 422 | "path": "M358.6 861C511.7 709.2 680.7 553.3 811.2 383.3 814.4 379.1 816.6 374.8 818.3 370.6 828.1 369.7 838 367.3 847.5 363.4 904.8 339.7 954.5 301 984.4 247.9 988.3 240.9 990.5 234.1 991.8 227.4 1002.2 207.3 1003.8 182.9 989.9 164.3 938.2 94.8 892.3 7.5 793 0.2 787.1-0.2 781.6 0 776.5 0.7 761.2 1.2 745.5 7 731.5 20.3 686.8 62.9 630.5 111.5 630.8 177.1 630.8 181.4 631.4 185.4 632.1 189.3 630.2 189.8 628.3 190.4 626.5 191.1 604.4 184.3 578.7 189.2 563.6 214.1 514.9 294.3 432.9 351 367.1 417.7 294.3 491.5 222.3 566 146 636.6 137.6 644.4 132.9 652.9 130.8 661.6 125.3 665.7 120.2 670.7 115.9 676.4 80.3 722.6 59.6 783.3 51 839.8 49.1 852.1 50.6 864.3 55.1 874.9 51 877.4 47 880.1 43.1 883.8L17.1 908.8C-34.8 958.6 43.1 1033.4 95 983.5L118.7 960.9C130.4 974.7 149 982.7 172.4 976.6 241.3 958.5 304.8 921.3 349.9 868.1 352.9 866.1 355.8 863.8 358.6 861ZM156.3 870.8C156.7 869.4 157.4 868.1 157.6 866.6 161.9 838.6 169.4 810.6 180.5 784.1 200.3 799.1 220.9 813.2 241.4 827.4 217.3 847.3 185.6 861.8 156.3 870.8ZM698.3 352.3C586.5 492.8 445.8 624.5 315.9 751.7 312.7 748.5 309.8 745.2 306 742.5 283.9 727.1 261.6 712.2 240.7 695.5 310.8 629.7 377.8 561.1 445 492.6 509.8 426.5 585.6 369.9 639.8 295.5 662.2 306.6 681.3 330.6 698.3 352.3ZM819.8 167.8C828.4 178.9 836.4 190.3 844.4 201.9 826.6 221.1 803.3 233.3 777 244.1 769 247.4 762.6 252.6 757.3 258.7 750.2 251 742.9 243.5 735.3 236.4 756.2 227.2 772.1 208.6 773.3 180.5 775.4 176.9 777.7 173.3 780.1 169.9 780.8 169 781 168.6 781.4 167.9 782.2 167.3 783.4 166 785.9 163.2 790.7 157.8 795.9 152.7 801.1 147.6 807.8 154 814.3 160.8 819.8 167.8Z", 423 | "width": 1000 424 | }, 425 | "search": [ 426 | "pencil" 427 | ] 428 | }, 429 | { 430 | "uid": "ad4627ea92e28039666c7b31a8ca9701", 431 | "css": "mobile", 432 | "code": 59415, 433 | "src": "custom_icons", 434 | "selected": true, 435 | "svg": { 436 | "path": "M842.9 489C843.9 338.7 850.7 189.4 822.1 41.2 819.9 29.9 814.9 21.7 808.3 16.2 801.4 5.2 789.3-1.8 771.7 0.4 575.3 24.8 376.9 23.7 182.9 66.2 138 76.1 143 132.8 174.5 151.6 175 223.8 178 477.9 193.8 705.9 191.7 716.1 192.4 726.6 196 735.6 200.9 800.8 206.9 862.9 214.3 917.1 189.3 942.4 199.5 998.3 245.2 998.4 429.1 998.8 613.1 1004.3 796.8 992 824.9 990.1 839.4 967.5 840.6 945.1 845.3 938.3 848.4 929.8 848.8 919.5 853.7 775.9 841.8 632.6 842.9 489ZM265.9 145.3C422.3 118 581.2 115 738.9 97.7 759.2 226.9 753.2 358.5 751.3 489 750.4 544.4 752 599.8 753.7 655.2 595.1 653.9 436.6 647.1 278.5 661.1 266.4 484.8 265.9 308 265.9 145.3ZM304.4 905.1C296.9 855.3 290.9 804.9 286 754.2 442.6 740.8 599.4 747.7 756.4 748.9 757.9 799.3 758.5 849.7 757.4 900.1 606.5 908.2 455.4 906.1 304.4 905.1ZM541.3 781.8C539.7 780.6 538 779.6 536 778.9 533.3 777.7 530.5 776.6 527.7 775.6 516 771.7 507.4 777.6 503.3 786.3 486.7 796.5 475.7 814.9 480.9 836.6 486.3 859.5 506.7 872.5 529.1 865.5 545.8 860.4 560.7 844.9 564.3 827.3 568.6 806.4 557.3 791.1 541.3 781.8ZM517.2 821.5C517.1 821.6 517.1 821.6 517 821.6 517 821.6 517 821.6 517.1 821.6 517.1 821.5 517.1 821.6 517.2 821.5L517.2 821.5Z", 437 | "width": 1000 438 | }, 439 | "search": [ 440 | "mobile" 441 | ] 442 | }, 443 | { 444 | "uid": "908c15e8f86f574fecdfd1f6bfac4c89", 445 | "css": "menu", 446 | "code": 59414, 447 | "src": "custom_icons", 448 | "selected": true, 449 | "svg": { 450 | "path": "M45.5 139.6C349.2 136.7 650.8 96.7 954.5 93.8 1015.1 93.2 1015.2-0.6 954.5 0 650.8 2.9 349.1 42.9 45.5 45.9-15.1 46.5-15.2 140.2 45.5 139.6ZM954.5 860.3C650.8 863.3 349.2 903.3 45.5 906.2-15.1 906.8-15.2 1000.6 45.5 1000 349.2 997.1 650.9 957.1 954.5 954.1 1015.1 953.5 1015.2 859.8 954.5 860.3ZM45.5 458.9C-15.2 455.8-14.9 549.6 45.5 552.6 339.1 567.3 630.7 465 923.1 505 982.4 513.2 1008 422.9 948.1 414.6 645.8 373.2 348.5 474 45.5 458.9Z", 451 | "width": 1000 452 | }, 453 | "search": [ 454 | "menu" 455 | ] 456 | }, 457 | { 458 | "uid": "0c45276db43011c6d42384a48a4bce1a", 459 | "css": "marker", 460 | "code": 59413, 461 | "src": "custom_icons", 462 | "selected": true, 463 | "svg": { 464 | "path": "M487.3 840.1C343 761.3 222.4 615.2 142.5 474.9-1 223 263.5 103.3 482.5 93.6 670.8 85.2 951 181.8 898.5 416.9 852 624.6 566.3 771.4 430.4 919 389.5 963.4 455.8 1029.8 496.8 985.3 673.4 793.4 1013.4 626 999.6 326.2 988.4 82.9 676.8 1.3 482.5 0 287.3-1.4-41.8 115.4 4.4 364 45.2 584 245.9 815.1 439.9 921.1 493 950 540.3 869.2 487.3 840.1L487.3 840.1ZM569.8 371.6C556.5 362.7 552.1 346.6 533.6 337.7 502.1 322.5 456.5 328 423.3 331.8 354.7 339.7 298.3 374.1 272.6 439.3 251.8 492.2 272.6 557.7 307.7 599.4 351.3 651 419.8 667.5 484.7 671.8 577.1 677.8 710 631.7 732.4 529.7 764.8 382.8 550.5 375.8 459.8 383.1 399.9 387.9 399.4 481.6 459.8 476.8 510.3 472.7 562 470.5 611.1 485.1 622.1 488.4 632.4 494.4 638.8 500.6 641.7 503.5 641.2 509.8 641.9 504.8 635 551.9 552.6 577 502 578.4 444.6 580 346.4 555.2 359.4 477.7 366.3 436.5 411.1 425.8 446.9 423.4 459.8 422.5 472.9 423.1 485.9 423.2 519.9 423.3 479.3 415.3 475.7 408.6 486.1 427.8 504.6 440.7 522.4 452.5 573 486 619.9 404.8 569.8 371.6L569.8 371.6Z", 465 | "width": 1000 466 | }, 467 | "search": [ 468 | "marker" 469 | ] 470 | }, 471 | { 472 | "uid": "d068b347e8510b84799db4ca837ee284", 473 | "css": "info", 474 | "code": 59412, 475 | "src": "custom_icons", 476 | "selected": true, 477 | "svg": { 478 | "path": "M969 280.1C857.9-25.3 500.1-31 236.6 31.8 178.8 45.5 202.4 134.2 259.3 123 62.9 244.8-68.6 469.2 38 705.3 163 982.2 541.8 1093.2 785.6 910.4 971.1 771.3 1048.3 498.1 969 280.1ZM798 769C658.9 943.3 432 935.5 255.8 825 85.5 718.3 66.3 512.9 157.2 347.7 246.9 185.1 430.8 111.4 607 124.4 623.9 125.7 635.8 119 643.3 108.7 735.6 132.9 816.6 185.2 868.6 282.2 950.2 434.5 900.5 640.6 798 769ZM495.6 318C495.7 322.9 496.3 327.9 497.4 332.9 503.9 363.1 531 388.4 561 395.1 614.3 407 647.5 363.6 649.7 315.2 651.1 284 639.9 242.9 615.3 222 591.6 201.8 563.8 198 535.6 211.2 515.6 220.4 501.3 241.4 491.6 260.3 481.8 279.4 483.2 301.8 495.6 318ZM637.7 649.3C624.5 662.2 611.3 674.6 595.9 684.8 592 687.3 588.3 689.2 584.5 690.8 574.6 671.3 581.4 642.5 584.7 622.7 589.4 594.1 594.3 565.4 590.9 536.4 587.6 508.4 569.8 484.7 539.1 484.7 517.7 484.7 494 501.2 488.5 523 486.6 525.3 484.7 527.6 483 530.4 463.9 561.9 442.5 591.9 418.4 619.7 405 635.2 390.4 650.6 373.6 662.3 368.8 665.6 364.4 667.8 359.7 669.6 311 630.5 242.1 700.9 289.9 745.4 354 804.8 423.9 765 480.5 706 484.9 735.4 497.9 761.9 529.1 781.8 594.8 823.6 665 767.6 710.8 722.4 758.3 675.5 685.1 602.4 637.7 649.3Z", 479 | "width": 1000 480 | }, 481 | "search": [ 482 | "info" 483 | ] 484 | }, 485 | { 486 | "uid": "1ae41bf99437f2351f0c1e60050149b3", 487 | "css": "arrows", 488 | "code": 59428, 489 | "src": "custom_icons", 490 | "selected": true, 491 | "svg": { 492 | "path": "M264.1 360.8C239.9 365 216.6 374.1 193.8 382.9 133 407.7 76.6 441.5 19.5 473.5-3.2 487.1-7 522.2 12.9 539.8 32.4 554.3 53.7 566.8 74.1 580.3 117.4 607.8 162 633.6 208.3 656 238.6 662.2 268.1 627.8 256.2 599.4 215.6 572.3 175 545.2 134.4 518.1 126.4 500 149.1 489 163.6 485.6 201.7 471.1 237.4 451.3 274.5 434.3 293.5 425.2 301.4 401.1 293 382.3 288.5 370.7 277.7 359.3 264.1 360.8ZM729.2 360.4C702.4 369.9 693.6 408.6 713.4 428.6 763.7 454.6 813.9 480.6 864.2 506.6 856.6 524.8 834.5 528.5 820.4 540.2 795.6 555.8 770.8 571.2 746.1 586.8 722.9 608 738.9 653.1 770.5 655.2 836.1 641.4 890.9 600.9 946.6 566.4 961.7 555.8 979.1 547.9 992.1 534.8 1009.3 511.2 996.9 473.3 969.2 463.6 895.5 424.9 818.3 393.2 741.6 360.9 737.5 360.6 733.3 359.8 729.2 360.4ZM380.5 704C358.2 715.7 350.4 747.1 364 767.9 397.4 844.1 432 920.1 477 990.3 501.3 1009.9 542.4 998.2 553.7 969.6 588.5 911.4 623.4 853.2 656.6 794 663.9 762.4 627.9 729.1 596.7 741.8 568.6 781.2 540.4 820.6 512.3 860 495.8 850.6 495.2 829.5 484.6 815.6 467.9 784.5 451 753.5 433.6 722.8 421.1 708.9 401.8 702 383.2 702.7L380.5 704ZM503.5 0.2C470.4 16.2 455.3 51.8 439.5 82.5 411.8 141.6 385.4 201.3 359.7 261.3 361.3 288.5 397.7 305.7 420.2 289.9 446.1 238.8 473.2 188.3 501.4 138.4 517.3 131.8 525.8 151.1 531.5 162.3 550 192.1 569.1 221.5 587.9 251.2 608 274.8 653.5 261.4 657.5 230.9 652.9 181.1 622.1 139.4 597.2 97.6 579.3 69.1 561.6 40.4 541.3 13.5 531.3 4 517.3-1 503.5 0.2Z", 493 | "width": 1000 494 | }, 495 | "search": [ 496 | "arrows" 497 | ] 498 | }, 499 | { 500 | "uid": "ef0061ae1681cc4c27907e9fa66aeadf", 501 | "css": "chat", 502 | "code": 59429, 503 | "src": "custom_icons", 504 | "selected": true, 505 | "svg": { 506 | "path": "M723.4 421C664.8 428.9 603.3 442.3 557.3 481.9 510.8 527.9 490.4 591.6 456.4 646 438 669.1 406.5 672.1 379.1 674.9 359.9 678.6 347.4 701.7 355.5 719.5 366.1 755.6 398.7 778.2 424.6 803.2 447.3 827.2 462.3 857.5 482 883.9 499.9 909.6 522.2 932.5 548.9 949.1 633.8 1008.2 750.8 1016.1 843.7 971.1 918.9 937.2 979.9 868.4 995.3 786.6 1019.3 679.1 984.4 559.3 903 483.9 854.5 440.6 788.4 418 723.4 421ZM754.2 475.6C868.9 495.5 959.6 607.7 952.6 723.7 946.9 813 886.1 898 800.2 927.2 709.2 958.4 598.8 927.2 541.5 849.3 529.2 833.2 514.4 816.1 515.4 794.5 514.2 778.5 504.9 760.7 488.1 756.9 471.4 750.4 453.7 746.3 437.3 738.8 428.6 730.8 436.7 714.2 448.3 715.1 464.2 708.6 479.7 700.8 495.2 693.4 511.8 680.9 515.1 659 524.2 641.5 542 597.9 561.9 552.6 599.3 521.8 631.1 494.7 673.4 484.8 714 479.9 727.3 477.7 740.6 474.9 754.2 475.6ZM232.4 0.6C198.7 5.7 167 20.3 137.8 37.3 65.5 81.7 11.8 158.7 4.1 243.9-5.3 337.4 36.9 436.6 116.8 488.9 221.6 558.8 370.9 556.7 471.7 480.3 506.8 452.8 534.1 417.3 560.4 381.9 589.3 350.2 629.1 325.9 644.7 284.1 651.6 266.9 642.4 243.9 623.2 240.1 597.5 229.5 565.5 226.3 548.3 201.9 513.2 151.8 489.5 93 443.5 51 398.2 14 337.9 3.3 280.8 0.8 264.7 0.3 248.5-0.8 232.4 0.6ZM276.4 61.4C322.6 67.3 370.6 78.6 407.7 108.1 445.6 137.6 459.9 185.4 483.5 225.3 492.8 239.4 500.8 257 517.8 263.1 528.4 268.4 544.8 271.6 547.9 284.6 548.4 301.5 528.6 309.6 514.1 309 494 312.8 483.4 333.3 480.5 351.7 473.4 379.1 461.1 407.7 435.8 422.8 362.4 482.5 252.7 497.1 168.4 452 95.5 413.6 47 329.4 58.5 247.1 72.3 155.9 147.7 75.6 240.2 61.2 252.2 59.3 264.4 59.7 276.4 61.4Z", 507 | "width": 1000 508 | }, 509 | "search": [ 510 | "chat" 511 | ] 512 | }, 513 | { 514 | "uid": "15ebe055305ed5c650a2cef99dcaf073", 515 | "css": "angle-bottom", 516 | "code": 59430, 517 | "src": "custom_icons", 518 | "selected": true, 519 | "svg": { 520 | "path": "M97.6 198.2C205.7 446.6 470.8 636 531.3 737.7L435.8 758.4C503 656.8 785.5 492.3 893.7 184.2 914.9 118.2 1018.5 150 997.1 216.5 874.2 566.3 600.5 706.5 528.3 825.5 507 860.7 457.2 861 435.8 826.4 375.2 728.8 107.2 504.2 5 255.9-22.3 192.6 70 134.4 97.6 198.2Z", 521 | "width": 1000 522 | }, 523 | "search": [ 524 | "angle-bottom" 525 | ] 526 | }, 527 | { 528 | "uid": "a14bf4b2a6f1cb9c76164489b8e24f5c", 529 | "css": "angle-double-bottom", 530 | "code": 59431, 531 | "src": "custom_icons", 532 | "selected": true, 533 | "svg": { 534 | "path": "M902.9 52.7C771.9 303.3 529.8 463.5 469.3 565.1L564.8 585.9C472.6 440.5 244.2 305.2 106.8 38.7 85.6-27.2-18 4.6 3.4 71.1 159.7 395.8 400 533.9 472.2 653 493.6 688.2 543.3 688.5 564.8 653.8 625.3 556.2 862.1 358.8 995.5 110.4 1022.9 47.2 930.5-11 902.9 52.7ZM900.3 389.6C748.4 613.9 528.2 785.1 467.9 886.4L563.1 907.1C496.1 805.8 264.3 662.3 103.6 402.1 82.4 336.3-20.9 368.1 0.5 434.3 155.4 736.1 398.8 855.3 470.8 974 492.1 1009.1 541.7 1009.4 563.1 974.9 623.5 877.5 843.7 668.3 992.6 447.1 1019.8 384.1 927.8 326.1 900.3 389.6Z", 535 | "width": 1000 536 | }, 537 | "search": [ 538 | "angle-double-bottom" 539 | ] 540 | }, 541 | { 542 | "uid": "291a189de5568349a78b9535f6ebd7d5", 543 | "css": "angle-double-left", 544 | "code": 59432, 545 | "src": "custom_icons", 546 | "selected": true, 547 | "svg": { 548 | "path": "M947.8 97.6C697.3 228.6 537 470.8 435.4 531.3L414.6 435.8C560 528 695.4 756.3 961.8 893.7 1027.8 914.9 996 1018.5 929.5 997.1 604.7 840.8 466.6 600.5 347.6 528.3 312.4 507 312.1 457.2 346.7 435.8 444.3 375.2 641.8 138.5 890.1 5 953.4-22.3 1011.6 70 947.8 97.6ZM610.9 100.2C386.7 252.1 215.5 472.3 114.1 532.7L93.4 437.4C194.8 504.4 338.2 736.2 598.4 897 664.2 918.1 632.5 1021.4 566.2 1000.1 264.5 845.2 145.2 601.7 26.5 529.7-8.6 508.4-8.8 458.8 25.7 437.4 123 377.1 332.2 156.9 553.4 7.9 616.4-19.3 674.5 72.8 610.9 100.2Z", 549 | "width": 1000 550 | }, 551 | "search": [ 552 | "angle-double-left" 553 | ] 554 | }, 555 | { 556 | "uid": "bbb5030fb206ed42405c14a66f782878", 557 | "css": "angle-double-right", 558 | "code": 59433, 559 | "src": "custom_icons", 560 | "selected": true, 561 | "svg": { 562 | "path": "M50.3 97.6C300.8 228.6 461.1 470.8 562.7 531.3L583.5 435.8C438.1 528 302.7 756.3 36.3 893.7-29.7 914.9 2.2 1018.5 68.6 997.1 393.4 840.8 531.5 600.5 650.6 528.3 685.8 507 686 457.2 651.4 435.8 553.8 375.2 356.4 138.5 108 5 44.8-22.3-13.4 70 50.3 97.6ZM387.2 100.2C611.4 252.1 782.7 472.3 884 532.7L904.7 437.4C803.3 504.4 659.9 736.2 399.7 897 333.9 918.1 365.7 1021.4 431.9 1000.1 733.7 845.2 852.9 601.7 971.6 529.7 1006.7 508.4 1007 458.8 972.4 437.4 875.1 377.1 665.9 156.9 444.7 7.9 381.7-19.3 323.7 72.8 387.2 100.2Z", 563 | "width": 1000 564 | }, 565 | "search": [ 566 | "angle-double-right" 567 | ] 568 | }, 569 | { 570 | "uid": "4fa6f5ef4d778d29a4619d5700a298ff", 571 | "css": "deny", 572 | "code": 59442, 573 | "src": "custom_icons", 574 | "selected": true, 575 | "svg": { 576 | "path": "M717.7 145.3C660.2 202.9 581.6 282.5 488.9 384.5 396.2 486.4 293.1 599.6 239.5 670.7 202.7 719.7 275 792.4 312.3 742.9 368 669 474.3 552.6 566.6 451.3 658.9 350 732.6 275.3 790.1 217.8 818.9 189.1 746.4 116.6 717.7 145.3ZM52.3 675.8C147.1 871.5 332.5 938.2 524.5 939.7 512.6 967.1 523.7 1004.5 558.6 999.6 644.6 987.4 725 953.8 792.9 904.4 819 897.7 844.4 890.2 868.9 882.1 900 871.8 903.5 835.5 889.6 813.5 994.3 685.9 1036.4 508.5 963.3 325.4 843.4 25.1 444.8-89.1 185.8 75.4-8.6 198.8-45.7 473.5 52.3 675.8ZM180.2 189.1C355.4 3.5 712.5 85 847.9 279.7 981.7 472 913.2 699.8 759.1 824.1 545.6 878.5 294.7 880.7 151 679.6 46.1 532.7 57.7 319 180.2 189.1Z", 577 | "width": 1000 578 | }, 579 | "search": [ 580 | "deny" 581 | ] 582 | }, 583 | { 584 | "uid": "d1d38a1b73c5fdbc6355e4d968a0962d", 585 | "css": "arrow-top", 586 | "code": 59441, 587 | "src": "custom_icons", 588 | "selected": true, 589 | "svg": { 590 | "path": "M364.9 384C411.1 277.1 484 196.8 545 94.4 513.9 94.4 482.8 94.4 451.7 94.4 519.4 196.8 586 311.8 626.3 437 647.7 503.4 752.1 471.4 730.5 404.4 687.3 270.1 617.7 146.7 545 26.8 523.5-8.6 473.3-8.9 451.7 25.9 390.7 124.3 317.9 219.1 271.6 325.9 244.1 389.6 337.2 448.2 364.9 384L364.9 384ZM490.5 954.6C487.4 1015.3 581.2 1015 584.2 954.6 598.9 661 496.6 369.4 536.6 77 544.8 17.7 454.4-7.8 446.2 52 404.8 354.3 505.6 651.6 490.5 954.6Z", 591 | "width": 1000 592 | }, 593 | "search": [ 594 | "arrow-top" 595 | ] 596 | }, 597 | { 598 | "uid": "b87e0594c96c87eee72935d12f047206", 599 | "css": "arrow-right", 600 | "code": 59440, 601 | "src": "custom_icons", 602 | "selected": true, 603 | "svg": { 604 | "path": "M616 364.9C722.9 411.1 803.2 484 905.6 545 905.6 513.9 905.6 482.8 905.6 451.7 803.2 519.4 688.2 586 563 626.3 496.6 647.7 528.6 752.1 595.6 730.5 729.9 687.3 853.3 617.7 973.2 545 1008.6 523.5 1008.9 473.3 974.1 451.7 875.7 390.7 780.9 317.9 674.1 271.6 610.4 244.1 551.8 337.2 616 364.9L616 364.9ZM45.4 490.5C-15.3 487.4-15 581.2 45.4 584.2 339 598.9 630.6 496.6 923 536.6 982.3 544.8 1007.8 454.4 948 446.2 645.7 404.8 348.4 505.6 45.4 490.5Z", 605 | "width": 1000 606 | }, 607 | "search": [ 608 | "arrow-right" 609 | ] 610 | }, 611 | { 612 | "uid": "9ba7e46d76d88f39fac81d1e032a5c44", 613 | "css": "arrow-left", 614 | "code": 59439, 615 | "src": "custom_icons", 616 | "selected": true, 617 | "svg": { 618 | "path": "M384 635.1C277.1 588.9 196.8 516 94.4 455 94.4 486.1 94.4 517.2 94.4 548.3 196.8 480.6 311.8 414 437 373.7 503.4 352.3 471.4 247.9 404.4 269.5 270.1 312.7 146.7 382.3 26.8 455-8.6 476.5-8.9 526.7 25.9 548.3 124.3 609.3 219.1 682.1 325.9 728.4 389.6 755.9 448.2 662.8 384 635.1L384 635.1ZM217.2 546.4C548.7 543.2 619 543.9 950.4 540.7 1016.5 540 1016.6 437.7 950.4 438.4 619 441.6 548.6 440.9 217.2 444.1 151.1 444.8 151.1 547.1 217.2 546.4Z", 619 | "width": 1000 620 | }, 621 | "search": [ 622 | "arrow-left" 623 | ] 624 | }, 625 | { 626 | "uid": "2d5fc4160084451cc4385712dc47fc2d", 627 | "css": "angle-top", 628 | "code": 59437, 629 | "src": "custom_icons", 630 | "selected": true, 631 | "svg": { 632 | "path": "M97.6 801.8C205.7 553.4 470.8 364 531.3 262.3L435.8 241.6C503 343.2 785.5 507.7 893.7 815.8 914.9 881.8 1018.5 850 997.1 783.5 874.2 433.7 600.5 293.5 528.3 174.5 507 139.3 457.2 139 435.8 173.6 375.2 271.2 107.2 495.8 5 744.1-22.3 807.4 70 865.6 97.6 801.8Z", 633 | "width": 1000 634 | }, 635 | "search": [ 636 | "angle-top" 637 | ] 638 | }, 639 | { 640 | "uid": "0821696c96bed99fa62c28919ff02251", 641 | "css": "angle-right", 642 | "code": 59436, 643 | "src": "custom_icons", 644 | "selected": true, 645 | "svg": { 646 | "path": "M198.2 902.4C446.6 794.3 636 529.2 737.7 468.7L758.4 564.2C656.8 497 492.3 214.5 184.2 106.3 118.2 85.1 150-18.5 216.5 2.9 566.3 125.8 706.5 399.5 825.5 471.7 860.7 493 861 542.8 826.4 564.2 728.8 624.8 504.2 892.8 255.9 995 192.6 1022.3 134.4 930 198.2 902.4Z", 647 | "width": 1000 648 | }, 649 | "search": [ 650 | "angle-right" 651 | ] 652 | }, 653 | { 654 | "uid": "3de44b3a11df49d2aa32c94a1c866e8d", 655 | "css": "angle-left", 656 | "code": 59435, 657 | "src": "custom_icons", 658 | "selected": true, 659 | "svg": { 660 | "path": "M801.8 902.4C553.4 794.3 364 529.2 262.3 468.7L241.6 564.2C343.2 497 507.7 214.5 815.8 106.3 881.8 85.1 850-18.5 783.5 2.9 433.7 125.8 293.5 399.5 174.5 471.7 139.3 493 139 542.8 173.6 564.2 271.2 624.8 495.8 892.8 744.1 995 807.4 1022.3 865.6 930 801.8 902.4Z", 661 | "width": 1000 662 | }, 663 | "search": [ 664 | "angle-left" 665 | ] 666 | }, 667 | { 668 | "uid": "343943fc00053ec5a028d4108ddfbd37", 669 | "css": "angle-double-top", 670 | "code": 59434, 671 | "src": "custom_icons", 672 | "selected": true, 673 | "svg": { 674 | "path": "M902.9 950.2C771.9 699.7 529.8 539.4 469.3 437.8L564.8 417.1C472.6 562.5 244.2 697.8 106.8 964.2 85.6 1030.2-18 998.4 3.4 931.9 159.7 607.1 400 469 472.2 350 493.6 314.8 543.3 314.5 564.8 349.1 625.3 446.7 862.1 644.2 995.5 892.5 1022.9 955.8 930.5 1014 902.9 950.2ZM900.3 613.3C748.4 389.1 528.2 217.9 467.9 116.5L563.1 95.8C496.1 197.2 264.3 340.6 103.6 600.8 82.4 666.6-20.9 634.9 0.5 568.6 155.4 266.9 398.8 147.6 470.8 29 492.1-6.1 541.7-6.4 563.1 28.1 623.5 125.4 843.7 334.6 992.6 555.8 1019.8 618.9 927.8 676.9 900.3 613.3Z", 675 | "width": 1000 676 | }, 677 | "search": [ 678 | "angle-double-top" 679 | ] 680 | }, 681 | { 682 | "uid": "445091c5ed8a839ebd0c1dbf4a375022", 683 | "css": "arrow-bottom", 684 | "code": 59443, 685 | "src": "custom_icons", 686 | "selected": true, 687 | "svg": { 688 | "path": "M456.9 0C433.4 0 410.1 15.1 410.4 45.5 412.7 285.4 437.9 524 450 763.3 418.2 716.8 388.2 669.8 364.9 616 337.2 551.8 244.1 610.4 271.6 674.1 317.9 780.9 390.7 875.7 451.7 974.1 462.9 992.2 481.8 1000.6 500.4 999.7 521.3 1001 542.8 990.2 548.5 967.2 619.9 849.1 688 727.7 730.5 595.6 752 528.6 647.7 496.6 626.3 563 604.8 629.6 575.8 693.3 543.3 753.8 531.1 517.6 506.5 282.2 504.2 45.5 503.9 15.2 480.3 0 456.9 0Z", 689 | "width": 1000 690 | }, 691 | "search": [ 692 | "arrow-bottom" 693 | ] 694 | } 695 | ] 696 | } -------------------------------------------------------------------------------- /src/fonts/blokkneue-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/blokkneue-regular.woff -------------------------------------------------------------------------------- /src/fonts/blokkneue-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/blokkneue-regular.woff2 -------------------------------------------------------------------------------- /src/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/fontello.woff -------------------------------------------------------------------------------- /src/fonts/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/fontello.woff2 -------------------------------------------------------------------------------- /src/fonts/kalam-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/kalam-regular.woff -------------------------------------------------------------------------------- /src/fonts/kalam-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/kalam-regular.woff2 -------------------------------------------------------------------------------- /src/fonts/redacted-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/redacted-regular.woff -------------------------------------------------------------------------------- /src/fonts/redacted-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuktFr/css-wireframes/f2abc63d33d658e1c747d540685236c9f6d12d55/src/fonts/redacted-regular.woff2 -------------------------------------------------------------------------------- /src/images/icon-view-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/icon-view-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/media-audio-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/media-audio-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/media-image-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/media-image-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/media-video-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/images/media-video-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/javascript/wireframes.js: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS wireframes 3 | */ 4 | window.onload = css_wireframes_init; 5 | function css_wireframes_init(){ 6 | ( function( document, window ) { 7 | "use strict"; 8 | 9 | /** 10 | * Insert the toolbar at the end of the document 11 | * 12 | * [TODO] For the moment we add a single button, 13 | * but it could contain several ones in the future. 14 | * So the populating should be expendable. 15 | */ 16 | var insert_toolbar = function(){ 17 | var body = document.getElementsByTagName('body')[0]; 18 | var toolbar = ''; 25 | body.insertAdjacentHTML('beforeEnd', toolbar); 26 | } 27 | insert_toolbar(); 28 | 29 | /** 30 | * Manage optional elements 31 | * 32 | * Add closing buttons to each .wf-optional and hide it on press 33 | */ 34 | var manage_optional_elements = function(){ 35 | 36 | // Declare an empty hidden elements list 37 | var hidden_elements = []; 38 | 39 | // Make all notes optional 40 | var notes = document.getElementsByClassName('wf-note'); 41 | for (var i = 0; i < notes.length; i++) { 42 | notes[i].classList.add('wf-optional'); 43 | } 44 | 45 | // Add the close button to each optional element 46 | var optional_elements = document.getElementsByClassName('wf-optional'); 47 | for (var i = 0; i < optional_elements.length; i++) { 48 | optional_elements[i].insertAdjacentHTML('beforeEnd', '×'); 49 | } 50 | 51 | // Button : hide optional elements 52 | var btns_hide_elements = document.getElementsByClassName('wf-optional__close'); 53 | for (var i = 0; i < btns_hide_elements.length; i++) { 54 | btns_hide_elements[i].addEventListener("click", function(e){ 55 | e.preventDefault(); 56 | // Hide the element 57 | this.parentElement.classList.add('wf-hidden'); 58 | hidden_elements.push(this.parentElement); 59 | // Update the toolbar 60 | update_btn_show_elements(); 61 | }); 62 | } 63 | 64 | // Button : show all hidden elements 65 | var btn_show_elements = document.getElementById('show-elements'); 66 | if (btn_show_elements){ 67 | btn_show_elements.addEventListener("click", function(e){ 68 | e.preventDefault(); 69 | // Show the elements 70 | for (var i = 0; i < hidden_elements.length; i++) { 71 | hidden_elements[i].classList.remove('wf-hidden'); 72 | } 73 | hidden_elements = []; // We empty the hidden list 74 | // Update the toolbar 75 | update_btn_show_elements(); 76 | }); 77 | } 78 | 79 | /** 80 | * Update the show elements button in the toolbar (disable/enable) 81 | * @return bool 82 | * false if toolbar is disabled, true otherwise 83 | */ 84 | var update_btn_show_elements = function(){ 85 | var disabled; 86 | if (hidden_elements.length > 0){ 87 | btn_show_elements.classList.remove('wf-toolbar__link--disabled'); 88 | disabled = false; 89 | } else { 90 | btn_show_elements.classList.add('wf-toolbar__link--disabled'); 91 | disabled = true; 92 | } 93 | return disabled; 94 | } 95 | 96 | } 97 | manage_optional_elements(); 98 | 99 | } )( document, window ); 100 | } 101 | -------------------------------------------------------------------------------- /src/modules/_block.scss: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Manage wireframe blocks 4 | * @example 5 | *
6 | **/ 7 | .wf-block { 8 | @include wf-border; 9 | padding: $gutter-vertical $gutter-horizontal; 10 | margin-bottom: $gutter-vertical; 11 | position: relative; 12 | display: flex; 13 | flex-flow: column nowrap; 14 | 15 | /** 16 | * Block content wrapper 17 | * 18 | * This is only needed if there is an aspect ratio applied 19 | */ 20 | > .wf-wrapper { 21 | display: flex; 22 | flex-flow: column nowrap; 23 | height: 100%; 24 | } 25 | 26 | /** 27 | * Block label 28 | */ 29 | &__label { 30 | margin: auto auto; // centered horizontally and vertically 31 | padding: $gutter-vertical/2 $gutter-horizontal/2; 32 | background-color: white; 33 | [class*=wf-block--color] & { 34 | background-color: inherit; 35 | } 36 | font-weight: 600; 37 | text-align: center; 38 | } 39 | 40 | /** 41 | * Take all the place 42 | */ 43 | &--fill { 44 | width: 100%; 45 | height: 100%; 46 | } 47 | 48 | /** 49 | * Put diagonals inside the block 50 | */ 51 | &--crossed { 52 | @include background-crossed; 53 | } 54 | 55 | /** 56 | * Make borders more visible 57 | */ 58 | &--important { 59 | border: 1px solid $color-important; 60 | box-shadow: inset 0 0 0 1px $color-important; 61 | } 62 | 63 | /** 64 | * All colored background 65 | */ 66 | [class*=wf-block--color]:not(.wf-block--color-light){ 67 | color: white; 68 | } 69 | 70 | /** 71 | * Dark background 72 | */ 73 | &--color-dark { 74 | background-color: $color-dark; 75 | border-color: $color-dark; 76 | &.wf-block--crossed { 77 | @include background-crossed(darken($color-dark, 30%)); 78 | } 79 | .wf-block__label { 80 | color: lighten($color-dark, 50%); 81 | background-color: $color-dark; 82 | } 83 | } 84 | 85 | /** 86 | * Light background 87 | */ 88 | &--color-light { 89 | background-color: $color-light; 90 | border-color: $color-light; 91 | &.wf-block--crossed { 92 | @include background-crossed(darken($color-light, 30%)); 93 | } 94 | .wf-block__label { 95 | color: darken($color-light, 40%); 96 | background-color: $color-light; 97 | } 98 | } 99 | 100 | /** 101 | * Gray background 102 | */ 103 | &--color-gray { 104 | background-color: $color-gray; 105 | border-color: $color-gray; 106 | &.wf-block--crossed { 107 | @include background-crossed(darken($color-gray, 30%)); 108 | } 109 | .wf-block__label { 110 | color: darken($color-gray, 40%); 111 | background-color: $color-gray; 112 | } 113 | } 114 | 115 | /** 116 | * Light gray background 117 | */ 118 | &--color-gray-light { 119 | background-color: $color-gray-light; 120 | border-color: $color-gray-light; 121 | &.wf-block--crossed { 122 | @include background-crossed(darken($color-gray-light, 30%)); 123 | } 124 | .wf-block__label { 125 | color: darken($color-gray-light, 40%); 126 | background-color: $color-gray-light; 127 | } 128 | } 129 | 130 | /** 131 | * Put a red background 132 | */ 133 | &--color-red { 134 | background-color: $color-red; 135 | border-color: $color-red; 136 | &.wf-block--crossed { 137 | @include background-crossed(darken($color-red, 30%)); 138 | } 139 | .wf-block__label { 140 | color: darken($color-red, 40%); 141 | background-color: $color-red; 142 | } 143 | } 144 | 145 | /** 146 | * Put a green background 147 | */ 148 | &--color-green { 149 | background-color: $color-green; 150 | border-color: $color-green; 151 | &.wf-block--crossed { 152 | @include background-crossed(darken($color-green, 30%)); 153 | } 154 | .wf-block__label { 155 | color: darken($color-green, 40%); 156 | background-color: $color-green; 157 | } 158 | } 159 | 160 | /** 161 | * Put a yellow background 162 | */ 163 | &--color-yellow { 164 | background-color: $color-yellow; 165 | border-color: $color-yellow; 166 | &.wf-block--crossed { 167 | @include background-crossed(darken($color-yellow, 30%)); 168 | } 169 | .wf-block__label { 170 | color: darken($color-yellow, 40%); 171 | background-color: $color-yellow; 172 | } 173 | } 174 | 175 | /** 176 | * Put a pink background 177 | */ 178 | &--color-pink { 179 | background-color: $color-pink; 180 | border-color: $color-pink; 181 | &.wf-block--crossed { 182 | @include background-crossed(darken($color-pink, 30%)); 183 | } 184 | .wf-block__label { 185 | color: darken($color-pink, 40%); 186 | background-color: $color-pink; 187 | } 188 | } 189 | } 190 | -------------------------------------------------------------------------------- /src/modules/_colors.scss: -------------------------------------------------------------------------------- 1 | 2 | .wf-color { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/modules/_media.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Media 3 | * 4 | * Module used to display different types of medias : images, videos, and such. 5 | * 6 | * By default, it is square and 100px wide 7 | * You can choose its width and aspect ratio with .wf-ratio--X and .wf-width--X 8 | * 9 | * @example 10 | * 11 | */ 12 | .wf-media { 13 | 14 | // By default, it is square and 100px wide 15 | @include aspect-ratio-common; 16 | @include aspect-ratio-variant(1, 1); 17 | width: 10rem; // 158px 18 | display: inline-block; 19 | &[class*=ratio] { 20 | display: inline-block; // force display type 21 | } 22 | vertical-align: baseline; 23 | border: 1px solid $color-default; 24 | background-color: $color-default; 25 | background-image: url('../../src/images/media-image-light.svg'); 26 | background-repeat: no-repeat; 27 | background-position: center center; 28 | background-size: 60%; 29 | 30 | /** 31 | * Video media variant 32 | */ 33 | &--video { 34 | background-image: url('../../src/images/media-video-light.svg'); 35 | } 36 | 37 | /** 38 | * Audio media variant 39 | */ 40 | &--audio { 41 | background-image: url('../../src/images/media-audio-light.svg'); 42 | } 43 | 44 | /** 45 | * Light media variant 46 | */ 47 | &--light { 48 | background-color: white; 49 | background-image: url('../../src/images/media-image-dark.svg'); 50 | &.wf-media--video { 51 | background-image: url('../../src/images/media-video-dark.svg'); 52 | } 53 | &.wf-media--audio { 54 | background-image: url('../../src/images/media-audio-dark.svg'); 55 | } 56 | } 57 | 58 | /** 59 | * Crossed media variant 60 | */ 61 | &--crossed { 62 | @include background-crossed; 63 | &.wf-media--dark { 64 | @include background-crossed(white); 65 | } 66 | } 67 | 68 | /** 69 | * Round media variant 70 | */ 71 | &--rounded { 72 | border-radius: 9999em; 73 | } 74 | 75 | /** 76 | * Inside a figure 77 | */ 78 | figure & { 79 | margin-bottom: $gutter-vertical/2; 80 | } 81 | } -------------------------------------------------------------------------------- /src/modules/_note.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Note 3 | * 4 | * Use notes to add remarks about the wireframe elements. 5 | * 6 | * They are positionned relatively to the element you are commenting (.wf-block for instance), 7 | * and can be placed at various positions (on the corners, on the sides, etc.). 8 | * By default, a note is positionned top right, 9 | * 10 | * @example 11 | *
12 | * Something worth mentioning about this block 13 | *
14 | */ 15 | $rotation: 4deg; 16 | .wf-note { 17 | border: 1px solid $color-external; 18 | border-radius: 2px; 19 | color: $color-external; 20 | background-color: white; 21 | box-shadow: -2px 2px 0 rgba($color-external, 0.1); 22 | display: inline-block; 23 | padding: 1em; 24 | font-size: 0.85rem; 25 | position: absolute; 26 | .wf-optional &, 27 | &.wf-optional { 28 | position: absolute; // counter the wf-optional position:relative 29 | } 30 | top: -0.5em; 31 | right: -1em; 32 | transform: rotate($rotation); 33 | z-index: 100; 34 | //font-family: $font-family-external; 35 | 36 | // Decoration 37 | &:before { 38 | content: ''; 39 | position: absolute; 40 | background-color: white; 41 | top: -2px; 42 | right: -2px; 43 | width: 1em; 44 | height: 1em; 45 | } 46 | &:after { 47 | content: ''; 48 | position: absolute; 49 | top: -1px; 50 | right: -1px; 51 | border-top: 1em solid white; 52 | border-left: 1em solid $color-external; 53 | width: 0; 54 | } 55 | 56 | &--top-left { 57 | right: auto; 58 | left: -1em; 59 | transform: rotate(-$rotation); 60 | } 61 | // Already default 62 | &--top-right { 63 | 64 | } 65 | &--bottom-left { 66 | top: auto; 67 | right: auto; 68 | left: -1em; 69 | bottom: -1em; 70 | transform: rotate($rotation); 71 | } 72 | &--bottom-right { 73 | top: auto; 74 | bottom: -1em; 75 | } 76 | // Mof 77 | &--left { 78 | 79 | } 80 | &--top { 81 | 82 | } 83 | &--right { 84 | 85 | } 86 | &--bottom { 87 | 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /src/modules/_optional.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Optional element 3 | */ 4 | .wf-optional { 5 | position: relative; 6 | transition: all 1s; // for nice transitions when hidden 7 | 8 | &:hover > .wf-optional__close { 9 | opacity: 1; 10 | color: white; 11 | } 12 | 13 | /** 14 | * Close button 15 | * 16 | * @note 17 | * By default, it is positioned according to the Bootstrap grid 18 | */ 19 | &__close { 20 | position: absolute; 21 | top: 0; 22 | left: 0; 23 | display: block; 24 | opacity: 0; 25 | width: 15px; 26 | height: 15px; 27 | background-color: $color-external; 28 | color: white; 29 | text-align: center; 30 | font-family: sans-serif; 31 | text-decoration: none; 32 | line-height: 15px; 33 | font-size: 0.8rem; 34 | font-weight: bold; 35 | transition: opacity 0.25s; 36 | &:hover, &:focus { 37 | background-color: $color-important; 38 | } 39 | // details for some wf-stuff 40 | .wf-block > &, 41 | .wf-note > & { 42 | top: -1px; 43 | left: -1px; 44 | border-radius: 0 2px 2px 0; 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/modules/_text.scss: -------------------------------------------------------------------------------- 1 | 2 | /* Not readable texts, just for the grey */ 3 | .wf-text { 4 | /** 5 | * Generate text lines 6 | * 7 | * @example 8 | *

Some text

9 | **/ 10 | &-lines { 11 | font-family: 'redacted'; 12 | } 13 | 14 | /** 15 | * Generate block words 16 | * 17 | * Load a font to transform all characters in a filled block 18 | * @example 19 | *

Some text

Other thing

20 | **/ 21 | &-words { 22 | font-family: 'redacted'; 23 | word-spacing: 0.75em; 24 | 25 | a { 26 | text-decoration: none; 27 | &:focus { 28 | background-color: transparent !important; // grrrr tinytypo ! 29 | color: $color-important !important; // grrrr tinytypo ! 30 | } 31 | } 32 | 33 | &.wf-text--important { 34 | color: $color-important; 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/modules/_toolbar.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Toolbar 3 | */ 4 | .wf-toolbar { 5 | 6 | position: fixed; 7 | bottom: 0; 8 | right: $gutter-horizontal; 9 | display: flex; 10 | flex-direction: row wrap; 11 | font-family: $font-family-external; 12 | font-size: 0.75rem; 13 | 14 | /** 15 | * Toolbar button group 16 | * 17 | * This is a