forked from ryepup/jquery.lcars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.less
92 lines (74 loc) · 1.18 KB
/
demo.less
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
/*
Demo LESS file for the LCARS Website System Demo Page
*/
// Set some defautl LCARS style coloring
@orange: #ff9900;
@purple: #cc99cc;
@blue: #9999ff;
@lightBlue: #9999cc;
@red: #cc0000;
@lightRed: #cc6666;
@tan: #ff9966;
@lightTan: #ffcc99;
@pink: #cc6699;
@white: #ccccff;
.rounded(@radius: 5px){
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
-o-border-radius: @radius;
border-radius: @radius;
}
// this is all for the uppper content
#up-header{
margin:0;
padding:0;
float:right;
text-align:right;
h1{
color: @orange;
}
}
#up-text{
margin:0;
padding:0;
text-align:left;
p{
margin:0 10px;
padding:0;
color: @orange;
}
}
#content{
h3{
color: @tan;
}
h2{
color: @orange;
}
}
.clear{
clear:both;
}
.mono{
font-family:monospace;
font-size:11px;
color: #000;
padding:10px;
background-color: @lightBlue;
width:45em;
.rounded(10px);
span{
color:@red;
}
}
.highlight{
background-color:@lightRed;
padding:2px;
.rounded(10px);
.highlight-inner{
background-color:@lightRed;
border:2px solid black;
padding:2px;
.rounded(10px);
}
}