-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (92 loc) · 1.43 KB
/
style.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.main-container {
width: 100%;
}
.wrapper {
width: 100%;
height: 90vh;
}
.navbar {
width: 100%;
height: 44px;
overflow: hidden;
background-color: #ee6790 ;
}
.navbar-layout {
height: 44px;
margin-bottom: 3px;
}
.navbar-title{
padding: 12px;
color: white;
float: left;
}
.navbar-social-media-icons {
float: right;
}
.flex-container {
display: flex;
flex-direction: row;
}
.text-container {
width: 100%;
height: 100%;
background-color: #A6F7FA;
}
.text-field {
}
.text-field-info {
background-color: #857cfd;
width: 100%;
color: white;
}
textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
max-width: 100%;
}
.html-container {
width: 100%;
height: 100%;
background-color: #f3f3f3;
}
.html-output {
padding: 10px;
}
.html-output-info {
background-color: #857cfd;
width: 100%;
color: white;
}
@media (max-width: 800px) {
.flex-container {
flex-direction: column;
}
}
.footer {
width: 100%;
}
.info-segment {
height: 20px;
}
.fa {
padding: 14px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 1;
}
.fa-github {
background: black;
color: white;
opacity: 0.5;
}
.fa-twitter {
background: #55ACEE;
color: white;
opacity: 0.5;
}