golang.org/x/build@v0.0.0-20240506185731-218518f32b70/internal/gomoteserver/ui/style.css (about) 1 /** 2 * Copyright 2023 The Go Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style 4 * license that can be found in the LICENSE file. 5 */ 6 * { 7 box-sizing: border-box; 8 } 9 body { 10 color: #222; 11 font-family: sans-serif; 12 margin: 0; 13 padding: 10px; 14 } 15 h1, 16 h2, 17 h1 > a, 18 h2 > a, 19 h1 > a:visited, 20 h2 > a:visited { 21 color: #375eab; 22 } 23 h1 { 24 font-size: 24px; 25 } 26 h2 { 27 font-size: 20px; 28 } 29 h1 > a, 30 h2 > a { 31 display: none; 32 text-decoration: none; 33 } 34 h1:hover > a, 35 h2:hover > a { 36 display: inline; 37 } 38 h1 > a:hover, 39 h2 > a:hover { 40 text-decoration: underline; 41 } 42 pre { 43 font-family: monospace; 44 font-size: 9pt; 45 } 46 header { 47 background: #e0ebf5; 48 margin: -10px -10px 0; 49 padding: 10px; 50 } 51 header h1 { 52 display: inline; 53 margin: 0; 54 padding-top: 5px; 55 } 56 header h1 a { 57 display: initial; 58 } 59 header nav { 60 display: inline-block; 61 margin-left: 20px; 62 } 63 header nav ul { 64 list-style: none; 65 margin: 0; 66 padding: 0; 67 } 68 header nav ul li { 69 display: inline-block; 70 } 71 header nav a { 72 background: #375eab; 73 border: 1px solid #375eab; 74 border-radius: 5px; 75 color: white; 76 display: inline-block; 77 font-size: 16px; 78 margin: 0; 79 margin-right: 5px; 80 padding: 10px; 81 text-decoration: none; 82 } 83 table { 84 border-collapse: collapse; 85 font-size: 9pt; 86 } 87 table td, 88 table th, 89 table td, 90 table th { 91 padding: 2px 6px; 92 text-align: left; 93 vertical-align: top; 94 } 95 table thead tr { 96 background: #fff !important; 97 } 98 div.footer { 99 bottom: 10px; 100 font-family: sans-serif; 101 font-size: 9pt; 102 position: fixed; 103 }