-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (82 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
96 lines (82 loc) · 1.39 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
* {
box-sizing: border-box
}
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: 'Karla', sans-serif;
line-height: 1.6;
color: #fff;
background: #000;
font-weight: 700;
}
#main {
max-width: 1200px;
margin: 0 auto;
}
#date-wrapper {
margin: 2rem 1rem 1rem;
text-align: center;
padding: 0 0 1rem 0;
}
#datepicker, .button {
font-family: 'Karla', sans-serif;
height: 2.5rem;
border-radius: 4px;
border: none;
padding: 0 1rem;
font-size: 1rem;
line-height: 2.5rem;
margin: 0 1rem;
}
.button{
cursor: pointer;
font-weight: 700;
}
.button.green {
background-color: #0f9d58;
color: #fff;
}
.button.disabled {
pointer-events: none;
background-color: #bbb;
color: #eee;
}
.button.raised {
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
transition-delay: 0.2s;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.button.raised:hover {
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
transition-delay: 0s;
}
h1 {
text-align: center;
padding: 1rem;
background: #333;
margin: 0 0 1rem 0;
font-size: 1.8rem;
color: white;
}
#header-date {
display:block;
}
#nasa-image {
width: 95%;
display: block;
margin: 0 auto;
}
@media (max-width: 599px) {
#date-wrapper * {
width:100%;
margin: 1rem 0;
}
#nasa-image {
width: 100%;
}
h1 {
font-size: 1.5rem;
padding:0;
}
}