Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for Burgess (0.43 sec)

  1. AUTHORS

    Steve Desmond <******@****.***>
    Steve Dougherty <******@****.***>
    Steve Durrheimer <******@****.***>
    Steve Francia <******@****.***>
    Steve Koch <******@****.***>
    Steven Burgess <steven.a.burgess@hotmail.com>
    Steven Erenst <******@****.***>
    Steven Hartland <******@****.***>
    Steven Iveson <******@****.***>
    Steven Merrill <******@****.***>
    Plain Text
    - Registered: 2023-03-15 12:04
    - Last Modified: 2023-03-06 16:11
    - 87.6K bytes
    - Viewed (0)
  2. TODO/angular-vs-react-vs-vue-a-2017-comparison.md

    - [所有的JavaScript框架都很糟糕](https://medium.com/@mattburgess/all-javascript-frameworks-are-terrible-e68d8865183e)([Matt Burgess](https://medium.com/@mattburgess) 对所有主要框架的大肆抨击)
    
    **感谢您的关注。我忘了重要的事吗?你有不同的意见吗?我总是很高兴得到反馈。**
    
    **在 Twitter 上关注我的更新和获取更多内容:** [@jensneuhaus](http://www.twitter.com/jensneuhaus/) —— 🙌
    
    
    ---
    
    Plain Text
    - Registered: 2023-03-16 14:49
    - Last Modified: 2017-11-16 09:54
    - 47.1K bytes
    - Viewed (0)
  3. website/src/components/Toc.module.css

    /* purgecss start ignore */
    .contents__link {
      @apply text-gray-700;
    }
    
    .contents__link:hover {
      @apply text-blue-600;
    }
    
    .contents__link--active {
      @apply font-medium text-blue-700;
    }
    CSS
    - Registered: 2023-03-17 17:45
    - Last Modified: 2020-12-18 16:05
    - 214 bytes
    - Viewed (0)
  4. app/server/src/lib/compiler/__testfixtures__/controls.json

            "favorite_food": { 
              "control": { 
                "type": "select", 
                "options":{
                  "hot_dog": "Hot Dog",
                  "pizza": "Pizza",
                  "burgers": "Burgers",
                  "ice_cream": "Ice Cream"
                }
              }
            }
          }
        }
      ]
    Json
    - Registered: 2023-03-12 09:39
    - Last Modified: 2020-09-29 13:42
    - 1008 bytes
    - Viewed (0)
  5. website/src/styles/index.css

    /* purgecss start ignore */
    @tailwind base;
    @tailwind components;
    /* purgecss end ignore */
    
    body,
    html {
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .top-24 {
      top: 6rem;
    }
    
    .focus-ring {
      outline: none;
      @apply border-blue-400 ring ring-blue-400;
    }
    
    input[type='search'] {
      border: none;
    }
    input[type='search']:focus {
    CSS
    - Registered: 2023-03-17 17:45
    - Last Modified: 2021-09-28 17:49
    - 3.3K bytes
    - Viewed (0)
  6. src/best-practices/frontend-performance/content/remove-unused-css.md

    - [UnCSS Online](https://uncss-online.com/)
    - [PurifyCSS](https://github.com/purifycss/purifycss)
    - [PurgeCSS](https://github.com/FullHuman/purgecss)
    Plain Text
    - Registered: 2023-02-17 02:38
    - Last Modified: 2023-01-26 15:55
    - 576 bytes
    - Viewed (0)
  7. src/data/best-practices/frontend-performance/content/remove-unused-css.md

    - [UnCSS Online](https://uncss-online.com/)
    - [PurifyCSS](https://github.com/purifycss/purifycss)
    - [PurgeCSS](https://github.com/FullHuman/purgecss)
    Plain Text
    - Registered: 2023-03-17 02:38
    - Last Modified: 2023-02-21 12:25
    - 576 bytes
    - Viewed (0)
  8. docs/_vendor/github.com/gohugoio/gohugoioTheme/assets/css/main.css

    /*Base Styles*/
    @import '_tachyons';
    
    /* purgecss start ignore */
    @import '_header-link';
    @import '_animation';
    @import '_documentation-styles';
    
    @import 'docsearch.js/dist/cdn/docsearch.min';
    @import '_carousel';
    @import '_code';
    @import '_tabs';
    @import '_color-scheme';
    @import '_columns';
    @import '_content';
    @import '_content-tables';
    @import '_definition-lists';
    @import '_fluid-type';
    @import '_font-family';
    CSS
    - Registered: 2023-03-17 10:01
    - Last Modified: 2020-05-31 10:43
    - 761 bytes
    - Viewed (0)
  9. strings/dictionary.txt

    BURDEN
    BURDENED
    BURDENING
    BURDENS
    BURDENSOME
    BUREAU
    BUREAUCRACIES
    BUREAUCRACY
    BUREAUCRAT
    BUREAUCRATIC
    BUREAUCRATS
    BUREAUS
    BURGEON
    BURGEONED
    BURGEONING
    BURGESS
    BURGESSES
    BURGHER
    BURGHERS
    BURGLAR
    BURGLARIES
    BURGLARIZE
    BURGLARIZED
    BURGLARIZES
    BURGLARIZING
    BURGLARPROOF
    BURGLARPROOFED
    BURGLARPROOFING
    BURGLARPROOFS
    BURGLARS
    Plain Text
    - Registered: 2023-03-16 19:18
    - Last Modified: 2021-03-21 11:05
    - 399.2K bytes
    - Viewed (2)
  10. docs/content/en/hugo-pipes/postprocess.md

    `postcss.config.js`
    
    ```js
    const purgecss = require('@fullhuman/postcss-purgecss')({
        content: [ './hugo_stats.json' ],
        defaultExtractor: (content) => {
            let els = JSON.parse(content).htmlElements;
            return els.tags.concat(els.classes, els.ids);
        }
    });
    
    module.exports = {
         plugins: [
             ...(process.env.HUGO_ENVIRONMENT === 'production' ? [ purgecss ] : [])
         ]
     };
    ```
    
    Plain Text
    - Registered: 2023-03-17 10:01
    - Last Modified: 2022-12-22 11:43
    - 3.9K bytes
    - Viewed (0)
Back to top