Blame view

src/main/webapp/static/component/autocjs/example/css/layout.css 1.11 KB
7f74fb91   林本磊   fix:南阳官网第一次提交
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
* {
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover {
    color: #008cff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

code {
    color: #666;
}

.page {
    margin: 3% auto;
    padding: 40px;
    width: 94%;
    box-sizing: border-box;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    border: 1px solid #DDD;
    overflow: hidden;
}

.title {
    text-align: center;
    font-size: 2em;
}

.meta {
    margin: 3em 1em 0;
    padding: 30px 15px 20px;
    border-top: 1px solid #DDD;
    overflow: hidden;
}

.meta li {
    line-height: 1.5em;
}

.article {
    padding: 1em;
    line-height: 1.5em;
}

.image {
    text-align: center;
}

.code {
    margin: 2em auto;
    border: 1px solid #ddd;
    background-color: #FFF;
    padding: 1.5em;
    font-size: 14px;
    font-family: 'Courier New', "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor: pointer;
    overflow: hidden;
}

.code:hover {
    background-color: #666;
}

.code:hover code {
    color: #FFF;
}

.copyright {
    text-align: center;
    font-family: Georgia, "Helvetica Neue", Helvetica, Arial, sans-serif;
}