forked from brenorobazza/html-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
87 lines (74 loc) · 1.22 KB
/
index.css
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
}
.code-area {
background-color: #1B1A1E;
display: flex;
flex-direction: column;
width: 60%;
height: 100%;
border-right: 1px solid #555;
font-size: 16px !important;
}
.code-area textarea {
resize: none;
outline: none;
width: 100%;
height: 100%;
padding: 10px;
font-family: Arial, monospace;
}
.codeTab {
height: 100%;
}
.preview-area {
width: 40%;
}
.preview-area iframe {
width: 40%;
height: 100%;
border: none;
position: fixed;
}
#Placeholders {
background-color: #fafafa;
height: 100%;
}
table, tr, td {
background-color: #1B1A1E;
border: solid 1px #FFF;
color: #FFF;
border-collapse: collapse;
width: 100%;
}
td {
padding: 10px;
width: 50% !important;
}
.w3-bar {
padding: 10px;
background-color: #1B1A1E;
width: 100%;
color: white;
white-space: nowrap;
}
.w3-bar-item {
padding: 8px;
background-color: white;
}
.downloadButton {
padding: 8px;
color: #FFF;
background-color: #1ebb1e;
}
.file {
padding: 10px;
color: white;
background-color: #1B1A1E;
}