-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeFiddler.css
More file actions
77 lines (64 loc) · 1.3 KB
/
codeFiddler.css
File metadata and controls
77 lines (64 loc) · 1.3 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
body {
background: lightblue;
background: -webkit-linear-gradient(left, lightblue, lightgreen);
background: -o-linear-gradient(left, lightblue, lightgreen);
background: -moz-linear-gradient(left, lightblue, lightgreen)
background: linear-gradient(to right, lightblue, lightgreen);
font-family: 'Raleway', sans-serif;;
}
.box {
border: 1px solid lightgray;
width: 100%;
height: 50% !important;
outline: none !important;
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
padding: 15px;
}
textarea {
resize: none;
text-align: left;
}
h3 {
margin-top: 0;
font-family: 'Raleway', sans-serif;
color: white;
}
.sectionBody {
margin-bottom: 15px;
}
#cssSection, #javascriptSection {
display: none;
}
iframe {
background-color: white;
}
textarea, iframe {
border-radius: 10px !important;
}
.sectionBtn {
background: transparent;
text-decoration: none;
color: white;
font-size: 2em;
margin-right: 15px;
}
.sectionBtn:hover, .sectionBtn:visited, .sectionBtn:active, .sectionBtn:link {
text-decoration: none;
}
.sectionBtn:active, .sectionBtn:hover, .sectionBtn:focus {
color: white;
}
.sectionBtn.active {
color: lightyellow;
}
h1 {
font-size: 4em;
color: white;
margin-bottom: 25px;
}
#buttonRow {
text-align: center;
margin-bottom: 50px;
}