This file is indexed.

/usr/lib/python3/dist-packages/sagenb_export/nbextension/www/sagenb-export.css is in python3-sagenb-export 3.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 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
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
    box-sizing: border-box;
}

html {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    font-size: 48px;
    font-weight: normal;
}

p {
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 128px;
}

.header h1 {
    margin: auto;
}

.header img {
    margin: auto;
    height: 64px;
    width: 64px;
}

.warn {
    width: 60%;
    margin: auto;
    border: 2px solid #ff7f7f;
    background: #ffdddd;
    border-radius: 10px;
    padding: 1em 3em;
}

.button {
    border: 2px solid #8080ff;
    background: #ddddff;
    padding: 0.5em;
    margin: 0.3em;
    display: inline-block;
}

.error {
    background-color: #7f0000;
    color: #ccffcc;
    padding: 0 2em;
}

.old {
    padding: 0 3em;
    margin-top: 2em;
    margin-bottom: 2em;
}

.old tt {
    font-size: 130%;
}

.old pre {
    font-size: 130%;
    text-align: center;
}


.ellipsis {
    width: 100%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-row.nb-header {
    font-weight: bold;
    text-align: center;
    background-color: #7f7f7f !important;
    color: #ffffff;
}


.nb-row {
    display: flex;
    flex-direction: row;
    line-height: 48px;
    white-space: nowrap;
}

.nb-row:nth-child(even) {
    background: #FFF;
}

.nb-row:nth-child(odd) {
    background: #eee;
}

.nb-row.clickable:hover {
    background: #aaaaff;
    cursor: pointer;
}

.nb-id {
    padding: 0 1em 0 2em;
    display: flex;
    flex: 1 0 0;
    font-family: "Lucida Console", Monaco, monospace;
}

.nb-name {
    padding: 0 2em 0 1em;
    display: flex;
    flex: 8 1 0;
}