-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
158 lines (157 loc) · 2.94 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body {
color: #ffffff;
font-family: Arial, sans-serif;
font-size:14px;
-moz-transition-property: text-shadow;
-moz-transition-duration: 4s;
-webkit-transition-property: text-shadow;
-webkit-transition-duration: 4s;
text-shadow: none;
background-color: #33342D;
}
.blurry {
-moz-transition-property: text-shadow;
-moz-transition-duration: 4s;
-webkit-transition-property: text-shadow;
-webkit-transition-duration: 4s;
text-shadow: #fff 0px 0px 25px;
}
a {
color: white;
}
.textColumn, .linksColumn {
padding: 2em;
}
.linksColumn {
position: absolute;
top:0px;
right: 0px;
bottom: 0px;
left: 30%;
left: calc(20% + 200px);
background-color: #33342D;
}
.textColumn {
position: absolute;
top: 0px;
right: 70%;
bottom: 0px;
left: 0px;
min-width: 270px;
z-index: 9999;
text-align: right;
padding-top: 11em;
background-color: #73A53E;
color: #33342D;
}
.textColumn p {
width: 75%;
float:right;
}
h1 {
color: #33342D;
font-size: 500%;
font-weight: normal;
margin-bottom: 0em;
}
h2 {
font-size: 200%;
font-weight: normal;
margin-bottom: 0em;
}
h3 {
font-size: 150%;
font-weight: normal;
margin-bottom: .5em;
}
ul {
padding-left: 1em;
margin: 0px;
}
li {
margin: 1em 0em;
}
.footer {
clear: both;
position: absolute;
bottom: 10%;
}
.Timer {
float: left;
}
#clock {
background-color: black;
color: #73A53E;
padding: 0 10%;
}
button {
align-items: flex-start;
background-color: #f5f5f5;
background-image: linear-gradient(to bottom, #fff, #e6e6e6);
background-repeat: repeat-x;
border: 1px solid;
border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .25);
border-radius: 10px/8px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
box-shadow: none;
box-sizing: border-box;
color: #000;
cursor: pointer;
direction: ltr;
font: bold 10px Arial, Helvetica, Sans-serif;
font-size: 1.2em;
letter-spacing: .75px;
opacity: .8;
outline: none;
text-align: center;
text-indent: 0;
text-rendering: auto;
text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
text-transform: none;
white-space: nowrap;
word-spacing: normal;
}
.add {
padding: 0;
float: left;
}
#new {
width: 60px;
height: 20px;
margin-left: 5px;
border-radius: 5px;
}
#remove {
width: 30px;
height: 20px;
margin-left: 5px;
border-radius: 5px 0 0 5px;
display: none;
}
#submit {
float: left;
clear: both;
margin-top: 20px;
}
#submit:active {
margin-top: 21px;
margin-left: 1px;
}
#calc {
float: left;
margin-top: 100px;
width: 100%;
}
#calc input {
width: 60px;
float: left;
}
#calc span {
float: left;
}
#error_msg {
color: red;
float: left;
clear: both;
margin-top: 20px;
}