File: style.css

package info (click to toggle)
python-googleapi 2.186.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 553,432 kB
  • sloc: python: 11,087; javascript: 249; sh: 114; makefile: 59
file content (48 lines) | stat: -rw-r--r-- 935 bytes parent folder | download | duplicates (7)
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
body {
    width: 600px;
    margin: auto;
    margin-top: 48px;
    margin-bottom: 48px;
    font-family: 'Coming Soon', serif;
    font-size: 35px;
}

ul {
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-color: #f8f6c6;
    background-image: -webkit-linear-gradient(#fdfce8, #f8f6c6);
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 5px solid #e3e2be;
    -moz-box-shadow: 8px 8px 8px #ccc;
    -webkit-box-shadow: 8px 8px 8px #ccc;
    box-shadow: 8px 8px 8px #ccc;
}

li {
    padding-left: 20px;
    border-bottom: 4px solid #e3e2be;
}

li .check {
    display: block;
    float: left;
    border-right: 8px solid #e3e2be;
    padding-right: 20px;
    width: 20px;
}

li .title {
    margin-left: 4px;
    padding-left: 20px;
    border-left: 4px solid #e3e2be;
    color: black;
    text-decoration: none;
}

li:last-child {
    border-bottom: none;
}