├── final-expert.png ├── final-senior.png ├── final-mid-level.png ├── css └── css-test.css ├── LICENSE ├── css-test.html └── README.md /final-expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertopsecret/css-test/HEAD/final-expert.png -------------------------------------------------------------------------------- /final-senior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertopsecret/css-test/HEAD/final-senior.png -------------------------------------------------------------------------------- /final-mid-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertopsecret/css-test/HEAD/final-mid-level.png -------------------------------------------------------------------------------- /css/css-test.css: -------------------------------------------------------------------------------- 1 | /* Freebie Reset */ 2 | body, p, header, form, input, select, h1, h2, ul, li { 3 | margin:0; 4 | padding:0; 5 | line-height: 1; 6 | font-family: Arial, Verdana, sans-serif; 7 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 supertopsecret 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /css-test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | CSS Test // Super Top Secret 4 | 5 | 6 | 7 |
8 |

Super Top Secret

9 |
10 |
11 |
12 |

Join Now

13 | 14 | 22 | 23 |
24 |

Results

25 | 55 |
56 | 59 | 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Job Candidate Evaluation: CSS Layout 2 | ## Abstract 3 | This is a CSS test designed to evaluate the skill a candidate posses with regard to CSS layout and appearance. It is not meant to test CSS3 capabilities or more cutting edge CSS. There are 3 different images included in this test, each of varying difficulty to emulate. A developer can gauge their skill based on which image they are able to duplicate. 4 | ## Task 5 | Using the provided HTML and CSS files, create the layout matching one of the included images 6 | - Expert Level Dev Test: [final-expert.png](final-expert.png) 7 | - Senior Level Dev Test: [final-senior.png](final-senior.png) 8 | - Mid Level Dev Test: [final-mid-level.png](final-mid-level.png) 9 | 10 | ## Guidelines 11 | - The HTML markup may not be modified in any way 12 | - Margins, padding and white space do not need to be exact, but alignment of page elements should be pixel perfect 13 | - Font sizes do not need to be exact but should be appropriately sized, relative to other font sizes used 14 | - The finished layout must match the image relatively between window sizes 1024x800 and 1400x9000 15 | - The finished layout should match image colors generally, but be consistent. An exact color match is unnecessary, however, expert level CSS devs should understand how to get a general color or shade using rgb() or HEX Codes. 16 | - The finished layout should not use CSS breakpoints 17 | - Progress can be checked at any time with a browser refresh of the test html page. 18 | - Try to not use search engines or other reference materials , with the exception of obtaining color codes for the non-expert level tests. 19 | - Submitted code must be justified by candidate. 20 | --------------------------------------------------------------------------------