-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
132 lines (112 loc) · 2.54 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
html {
background: linear-gradient(to right, #99CC66, #669933);
width: 100%;
height: 100%;
}
body {
width: 80%;
margin-left: auto;
margin-right: auto;
text-align: center;
color: #fff;
font-family: -apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;
line-height: 1.5;
padding: 2em;
}
h1,h2,h3,h4,h5,h6,a {
line-height: 1.2;
font-weight: bold;
text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
h1 {
margin-top: 0;
font-size: 2.441em
}
h2 {
font-size: 2em
}
h3 {
font-size: 1.25em
}
a {
color: #fff;
font-size: 1em;
text-decoration: none
}
a:hover {
text-decoration: underline
}
.weather {
width:60%;
margin-left: auto;
margin-right:auto;
-webkit-filter: invert(100%);
filter: invert(100%)
}
.clock{
line-height: 1.2;
font-weight: bold;
text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
font-size: 12vw
}
label, input,{
font-family: -apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;
}
.button {
display: inline-block;
margin: 1em;
padding: 0.5em 1em;
color: #fff !important;
font-family: -apple-system,".SFNSText-Regular","San Francisco","Roboto","Segoe UI","Helvetica Neue","Lucida Grande",Arial,sans-serif;
font-weight: bold;
text-align: center;
text-decoration: none;
background-color: #6c3;
border: 0 !important;
border-radius: 4px;
cursor: pointer;
box-shadow: 0 5px 12px 0px rgba(0,0,0,0.2);
}
.grid {
display: flex;
justify-content: space-evenly;
}
.col {
flex: 1;
}
@media screen and (max-width:600px) {
.grid {
display: block;
}
.col {
width: 100%;
}
}
ul li {
list-style:none;
margin-left: -1.5em;
}
.removebtn {
border:none;
background: none;
color: #fff;
}
.removebtn:hover {
opacity: 0.7;
}
#add-link-form-l, #add-link-form-c, #add-link-form-r{
display:none;
background: #444;
padding:20px;
color: #ccc;
box-shadow: 0 5px 12px 0px rgba(0,0,0,0.2);
border-radius: 1em;
}
#add-link-form-l #add-link-form-c #add-link-form-r input {
margin: 5px 0;
width:250px;
color: #333;
padding:5px;
outline:none;
border:none;
}