-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
126 lines (125 loc) · 2.75 KB
/
main.css
File metadata and controls
126 lines (125 loc) · 2.75 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import 'https://fonts.googleapis.com/css?family=Roboto+Slab';
*{
margin:0px;
padding:0px;
font-family: 'Roboto Slab', serif;
background-image:url('bg.jpg');
background-size: cover;
background-repeat: no-repeat;
padding-top:10px;
}
h1,h3{
background: none;
}
.wrapper{
width:500px;
padding:20px;
overflow: hidden;
height: auto;
margin: 0px auto 0px auto;
text-align:center;
line-height: 40px;
background:rgba(255, 255, 255, 0.5);
border-radius: 30px;
}
#zipcodeButton{
background: none;
}
.form-control {
display: block;
width: 95%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #999;
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control::-ms-expand {
background-color: transparent;
border: 0;
}
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid black;
border-radius: 4px;
}
.topmargin{
margin-top:20px;
}
#city{
margin-top:10px;
}
#dayList{
list-style: none;
border:2px solid black;
padding:10px;
line-height: 30px;
height:300px;
overflow: scroll;
overflow-x: hidden;
background: none;
}
#dayList li{
font-size: 15px;
border:2px solid lightgrey;
border-radius:10px;
padding:20px;
margin-bottom: 10px;
background: #333;
color:white;
}
#dayList img{
float:left;
width:40px;
background: none;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: rgba(255,0,0,0.8);
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}