diff --git a/README.md b/README.md index b76f881..ec68998 100644 --- a/README.md +++ b/README.md @@ -1337,25 +1337,25 @@ class (Enum): * **Accessing a member named after a reserved keyword causes SyntaxError.** ```python - = . # Returns a member. - = [''] # Returns a member or raises KeyError. - = () # Returns a member or raises ValueError. - = .name # Returns member's name. - = .value # Returns member's value. + = . # Returns a member. + = [''] # Returns a member. Raises KeyError. + = () # Returns a member. Raises ValueError. + = .name # Returns member's name. + = .value # Returns member's value. ``` ```python -list_of_members = list() -member_names = [a.name for a in ] -member_values = [a.value for a in ] -random_member = random.choice(list()) + = list() # Returns enum's members. + = [a.name for a in ] # Returns enum's member names. + = [a.value for a in ] # Returns enum's member values. + = random.choice(list()) # Returns a random member. ``` ```python def get_next_member(member): members = list(member.__class__) - index = (members.index(member) + 1) % len(members) - return members[index] + index = members.index(member) + 1 + return members[index % len(members)] ``` ### Inline diff --git a/index.html b/index.html index e3d140d..92c15e6 100644 --- a/index.html +++ b/index.html @@ -1152,21 +1152,21 @@ Hello World!
  • Otherwise it returns an increment of the last numeric value.
  • Accessing a member named after a reserved keyword causes SyntaxError.
  • -
    <member> = <enum>.<member_name>                 # Returns a member.
    -<member> = <enum>['<member_name>']              # Returns a member or raises KeyError.
    -<member> = <enum>(<value>)                      # Returns a member or raises ValueError.
    -<str>    = <member>.name                        # Returns member's name.
    -<obj>    = <member>.value                       # Returns member's value.
    +
    <member> = <enum>.<member_name>           # Returns a member.
    +<member> = <enum>['<member_name>']        # Returns a member. Raises KeyError.
    +<member> = <enum>(<value>)                # Returns a member. Raises ValueError.
    +<str>    = <member>.name                  # Returns member's name.
    +<obj>    = <member>.value                 # Returns member's value.
     
    -
    list_of_members = list(<enum>)
    -member_names    = [a.name for a in <enum>]
    -member_values   = [a.value for a in <enum>]
    -random_member   = random.choice(list(<enum>))
    +
    <list>   = list(<enum>)                   # Returns enum's members.
    +<list>   = [a.name for a in <enum>]       # Returns enum's member names.
    +<list>   = [a.value for a in <enum>]      # Returns enum's member values.
    +<member> = random.choice(list(<enum>))    # Returns a random member.
     
    def get_next_member(member):
         members = list(member.__class__)
    -    index   = (members.index(member) + 1) % len(members)
    -    return members[index]
    +    index = members.index(member) + 1
    +    return members[index % len(members)]
     

    Inline

    Cutlery = Enum('Cutlery', 'FORK KNIFE SPOON')
     Cutlery = Enum('Cutlery', ['FORK', 'KNIFE', 'SPOON'])
    diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/License.txt b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/License.txt
    new file mode 100644
    index 0000000..11c98a1
    --- /dev/null
    +++ b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/License.txt
    @@ -0,0 +1,37 @@
    +
    +
    +X------------------------------------------------------[
    +                                                    
    +     FREE FONT : http://www.OnlineWebFonts.Com      
    +                                                    
    +^------------------------------------------------------a
    +
    +You must credit the author
    +Copy this link on your web
    +
    +
    Font made from oNline Web Fonts is licensed by CC BY 3.0
    + + OR + +oNline Web Fonts + + +======================================================================================================= + +OnlineWebFonts.Com features an amazing collection of free fonts, +premium fonts and free dingbats. With over 8,000,000 freeware fonts, +you've come to the best place to download fonts! + + +======================================================================================================= + + +OnlineWebFonts.Com Some fonts provided are trial versions of full versions and may not allow embedding +unless a commercial license is purchased or may contain a limited character set. +Please review any files included with your download, +which will usually include information on the usage and licenses of the fonts. +If no information is provided, +please use at your own discretion or contact the author directly. + + +======================================================================================================= \ No newline at end of file diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/Demo.html b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/Demo.html new file mode 100644 index 0000000..5ae8c31 --- /dev/null +++ b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/Demo.html @@ -0,0 +1,95 @@ + + + + +Menlo Bold Font - OnlineWebFonts.COM + + + +

    OnlineWebFonts Fonts Demo

    +

    +Menlo Bold Fonts More Formats Downloads

    +
    +
    Instructions:
    +
      +
    • +

      1Use font-face declaration Fonts.
      + +

      +@font-face {font-family: "Menlo Bold";
      +  src: url("a6ffc5d72a96b65159e710ea6d258ba4.eot"); /* IE9*/
      +  src: url("a6ffc5d72a96b65159e710ea6d258ba4.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
      +  url("a6ffc5d72a96b65159e710ea6d258ba4.woff2") format("woff2"), /* chrome、firefox */
      +  url("a6ffc5d72a96b65159e710ea6d258ba4.woff") format("woff"), /* chrome、firefox */
      +  url("a6ffc5d72a96b65159e710ea6d258ba4.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
      +  url("a6ffc5d72a96b65159e710ea6d258ba4.svg#Menlo Bold") format("svg"); /* iOS 4.1- */
      +}
      +
      + +
    • +
    • +

      2Settings font css style
      + +

      +.demo{
      +    font-family:"Menlo Bold" !important;
      +    font-size:16px;font-style:normal;
      +    -webkit-font-smoothing: antialiased;
      +    -webkit-text-stroke-width: 0.2px;
      +    -moz-osx-font-smoothing: grayscale;}
      +
      + +
    • +
    • +

      3View DEMO
      +

      +<div class="demo"> www.OnlineWebFonts.Com </div>
      +
      +
    • +
    • +

      OROr add to the head section of page.
      +

      +<link href="//db.onlinewebfonts.com/c/a6ffc5d72a96b65159e710ea6d258ba4?family=Menlo+Bold" rel="stylesheet" type="text/css"/>
      +
      +
    • +
    +
    +
    +
    +
    +OnlineWebFonts.Com features an amazing collection of free fonts,
    +premium fonts and free dingbats. With over 8,000,000 freeware fonts, 
    +you\'ve come to the best place to download fonts! 
    +
    +OnlineWebFonts.Com Some fonts provided are trial versions of full versions and may not allow embedding 
    +unless a commercial license is purchased or may contain a limited character set. 
    +Please review any files included with your download, 
    +which will usually include information on the usage and licenses of the fonts. 
    +If no information is provided, 
    +please use at your own discretion or contact the author directly. 
    +
    +0123456789  /*-+~!@#$%^&*()-=_+{}[]:;"\'|\<>.?
    +
    +
    +
    + +
    +
    License and attribution:
    +
    You must credit the author Copy this link ( oNlineWebFonts.Com ) on your web
    Copy the Attribution License:
    + +
    + + + \ No newline at end of file diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.eot b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.eot new file mode 100644 index 0000000..f2d055a Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.eot differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.svg b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.svg new file mode 100644 index 0000000..c0bc588 --- /dev/null +++ b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.svg @@ -0,0 +1,7524 @@ + + + + +Created by FontForge 20200427 at Thu Apr 23 22:41:50 2009 + By www +Copyright (c) 2009 Apple Inc. Copyright (c) 2006 by Tavmjong Bah. Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.ttf b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.ttf new file mode 100644 index 0000000..9f70714 Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.ttf differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.woff b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.woff new file mode 100644 index 0000000..43b2df3 Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.woff differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.woff2 b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.woff2 new file mode 100644 index 0000000..95da5fa Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/@font-face/a6ffc5d72a96b65159e710ea6d258ba4.woff2 differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.eot b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.eot new file mode 100644 index 0000000..f2d055a Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.eot differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.svg b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.svg new file mode 100644 index 0000000..c0bc588 --- /dev/null +++ b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.svg @@ -0,0 +1,7524 @@ + + + + +Created by FontForge 20200427 at Thu Apr 23 22:41:50 2009 + By www +Copyright (c) 2009 Apple Inc. Copyright (c) 2006 by Tavmjong Bah. Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.ttf b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.ttf new file mode 100644 index 0000000..9f70714 Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.ttf differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.woff b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.woff new file mode 100644 index 0000000..43b2df3 Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.woff differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.woff2 b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.woff2 new file mode 100644 index 0000000..95da5fa Binary files /dev/null and b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Menlo Bold/Menlo Bold.woff2 differ diff --git a/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Online_Web_Fonts.url b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Online_Web_Fonts.url new file mode 100644 index 0000000..71ff3d5 --- /dev/null +++ b/web/OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88/Online_Web_Fonts.url @@ -0,0 +1,8 @@ +[{000214A0-0000-0000-C000-000000000046}] +Prop3=19,2 +[InternetShortcut] +URL=http://www.onlinewebfonts.com/ +IDList= +IconFile=http://www.fontfree.org/favicon.ico +IconIndex=1 +HotKey=0 diff --git a/web/style.css b/web/style.css index 36d50b6..87e0fb4 100644 --- a/web/style.css +++ b/web/style.css @@ -129,7 +129,7 @@ a:not(:hover) { pre, code, textarea { - font-family: "Menlo", "Menlo Regular", monospace; + font-family: "Menlo", "Menlo Web", monospace; } code { @@ -263,14 +263,18 @@ ul { } - - - /*@import url(web/style.css);*/ -@font-face {font-family: "Menlo Regular"; +@font-face {font-family: "Menlo web"; src: url("OnlineWebFonts_COM_cb7eb796ae7de7195a34c485cacebad1\\@font-face\\9f94dc20bb2a09c15241d3a880b7ad01.woff2") format("woff2"), /* chrome、firefox */ url("OnlineWebFonts_COM_cb7eb796ae7de7195a34c485cacebad1\\@font-face\\9f94dc20bb2a09c15241d3a880b7ad01.woff") format("woff"); + font-weight: normal; +} + +@font-face {font-family: "Menlo web"; + src: url("OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88\\Menlo Bold\\@font-face\\a6ffc5d72a96b65159e710ea6d258ba4.woff2") format("woff2"), /* chrome、firefox */ + url("OnlineWebFonts_COM_d6ba633f6ea4cafe1a39ab736fe55e88\\Menlo Bold\\@font-face\\a6ffc5d72a96b65159e710ea6d258ba4.woff") format("woff"); + font-weight: bold; } .join,