-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (99 loc) · 1.76 KB
/
style.css
File metadata and controls
103 lines (99 loc) · 1.76 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
97
98
99
100
101
102
103
*, *:before, *::after {
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
flex-flow: column;
align-items: center;
min-height: 90vh;
font-family: Arial, Helvetica, sans-serif;
background-color: #B2DFDB;
}
/*** Main container ***/
main {
display: flex;
flex-flow: column;
height: 650px;
width: 75%;
max-width: 800px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12),
0 1px 8px rgba(0,0,0,0.18);
}
div:focus {
outline: none;
}
/*** Text area ***/
#input-container {
overflow-y: auto;
height: 100%;
background-color: #FAFAFA;
}
.input-area {
border-radius: 2px;
padding: 20px;
}
.heading {
margin-bottom: 10px;
font-size: 2em;
}
.content {
font-size: 1.1em;
}
#git {
color: #000;
text-decoration: none;
font-size: 14px;
text-align: center;
margin-bottom: 50px;
}
#git img {
height: 50px;
}
#git p {
margin: 0;
}
/*** Toolbar and buttons ***/
.toolbar {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
background-color: #FAFAFA;
border-bottom: 2px solid #DDDDDD;
padding: 10px;
min-height: 52px;
}
.font-area, .styling-area, .align-area {
display: flex;
}
.arial {font-family: Arial, Helvetica, sans-serif;}
.georgia {font-family: Georgia, 'Times New Roman', Times, serif;}
.mono {font-family: 'Courier New', Courier, monospace;}
select {
font-size: 14px;
border: 1px solid #eee;
}
button {
background-color: #fff;
border: 1px solid #E0E0E0;
border-radius: 2px;
padding: 6px;
min-width: 35px;
}
button:hover {
background-color: #ccc;
cursor: pointer;
}
button:active {
border: 1px solid #ccc;
background-color: #E7E7E7;
}
.align-area button:last-child {
margin: 0;
}
#color {
border: 1px solid #E0E0E0;
background-color: #fff;
height: 100%;
padding: 4px;
}