-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (68 loc) · 1.09 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
body {
background: linear-gradient(
180.3deg,
rgb(221, 221, 221) 5.5%,
rgb(110, 136, 161) 90.2%
);
}
.changecity {
position: static;
}
.today {
transition: ease-in-out;
margin: 0px 0px 0px 0px;
}
.today:hover {
background-color: #9ba3eb;
}
.col-2 {
text-align: center;
font-family: monospace;
padding: 5px;
font-size: 17px;
}
h1 {
text-align: center;
font-family: sans-serif;
}
h2 {
text-align: center;
font-family: sans-serif;
}
h3 {
text-align: center;
font-family: sans-serif;
}
.tuesday {
text-align: left;
}
p {
text-align: center;
font-family: "Courier New", Courier, monospace;
}
.form-control {
display: block;
margin-left: auto;
margin-right: auto;
}
button {
display: block;
margin: 0 auto;
padding: 20px;
background-color: #1a64d6;
font-size: 14px;
color: white;
font: message-box;
border: 5px solid #1a64d6;
border-radius: 30px;
box-shadow: 2px 9px 5px rgba(0, 0, 0, 0.2);
transition: all 200ms ease-in-out;
}
button:hover {
color: #1a64d6;
background-color: transparent;
}
.link {
text-align: center;
color: black;
}