-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (96 loc) · 1.42 KB
/
style.css
File metadata and controls
96 lines (96 loc) · 1.42 KB
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
@charset "utf-8";
/* CSS Document */
@import url(http://fonts.googleapis.com/css?family=Orbitron:500);
body {
margin: 0px;
padding: 0px;
}
body * {
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
#hdr {
background-color: #09F;
}
a {
text-decoration: none;
}
.logo {
font-family: 'Orbitron', sans-serif;
margin-left: 30px;
margin-right: 20px;
font-size: 18px;
}
.logo span {
color: white;
}
.tab {
color: white;
margin-left: 20px;
}
.tab:hover {
color: #CC0;
cursor: pointer;
}
#container {
border: solid 2px #09F;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
}
#container .clm {
width: 50%;
}
textarea {
width:100%;
margin:0px;
padding:0px;
border-width:0px;
border-right:solid 2px #09F;
resize:none;
}
#texthtml {
background-color: #EACFFF;
}
#texthtml:focus {
background-color: #EEE;
}
#textcss {
border-bottom: solid 2px #09F;
border-top: solid 2px #09F;
background-color: #CECFFF;
}
#textcss:focus {
background-color: #EEE;
}
#textjs {
background-color: #F5F5CC;
}
#textjs:focus {
background-color: #EEE;
}
.tag {
width: 80px;
text-align: center;
background-color: #09F;
color: white;
position: absolute;
right: 50%;
}
.clm .hidh {
display: block;
}
.clm .hidc {
display: block;
}
.clm .hidj {
display: block;
}
#textjs:focus .hidh {
display: none;
}