forked from Edzelf/Esp-radio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
radio_css.h
129 lines (114 loc) · 2.25 KB
/
radio_css.h
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// radio.css file in raw data format for PROGMEM
//
const char radio_css[] PROGMEM = R"=====(
body {
background-color: lightblue;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: navy;
margin-left: 20px;
font-size: 150%
}
ul {
list-style-type: none;
margin: 0;
margin-left: -10px;
overflow: hidden;
background-color: #2C3E50;
position:fixed;
top:0;
width:100%;
z-index:100;
}
li .pull-left {
float: left;
}
li .pull-right {
float: right;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover, a.active {
background-color: #111;
}
.button {
width: 80px;
height: 40px;
background-color: #128F76;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 10px;
}
.buttonr {background-color: #D62C1A;}
.button-play {
height: 30px;
}
.select {
width: 160px;
height: 32px;
padding: 5px;
background: white;
font-size: 16px;
line-height: 1;
border: 1;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-appearance: none;
border: 1px solid black;
border-radius: 10px;
}
.selectw {width: 410px;}
input[type="text"] {
margin: 0;
height: 28px;
background: white;
font-size: 16px;
appearance: none;
box-shadow: none;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-appearance: none;
border: 1px solid black;
border-radius: 10px;
}
input[type="text"]:focus {
outline: none;
}
input[type=submit] {
width: 200px;
height: 40px;
background-color: #128F76;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}
textarea {
width: 80;
height: 25;
border: 1px solid black;
border-radius: 10px;
padding: 5px;
font-family: Courier, "Lucida Console", monospace;
background-color: white;
resize: none;
})=====" ;