-
Notifications
You must be signed in to change notification settings - Fork 0
/
mymain.css
161 lines (140 loc) · 3.05 KB
/
mymain.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
159
160
161
/**************TEXT.HTML************************/
body{
transition: background-color 5s;
-webkit-transition: background-color 5s;
}
#time{
font-size: 300%;
font-family: Orbitron, sans-serif;
}
h4{
font-size: 200%;
font-family: Orbitron, sans-serif;
color: black;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 40px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 15px;
cursor: pointer;
}
.button2 {background-color: #008CBA;} /* Blue */
.button3 {background-color: #f44336;} /* Red */
.button4 {background-color: #e7e7e7; color: black;} /* Gray */
.button5 {background-color: #555555;} /* Black */
#loader {
position: absolute;
left: 50%;
top: 40%;
z-index: 1;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add animation to "page content" */
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}
#myDiv {
display: none;
text-align: center;
margin-top: 10%;
}
/**************TIME.HTML***********************/
#body1{
transition: background-color 30s;
-webkit-transition: background-color 30s;
}
#txt{
font-size: 500%;
font-family: Orbitron, sans-serif;
text-align: center;
}
#welcome{
font-size: 200%;
font-family: Orbitron, sans-serif;
color: black;
text-align: center;
margin-top: 10%;
}
label{
font-size: 200%;
font-family: Orbitron, sans-serif;
margin-left: 40%;
}
.alert{
padding: 40px;
background-color: black;
opacity: 0.8;
color: white;
font-size: 200%;
font-family: Lucida Console, Monaco, monospace;
text-align: center;
transition: all 4s ease;
}
.alert:hover{
opacity: 0.6;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 30px;
line-height: 30px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover{
color: red;
}
#alert{
width: 100%;
padding: 20px 0;
margin-top:10px;
font-size: 150%;
font-family: Lucida Console, Monaco, monospace;
}
a{
color: black;
text-decoration: none;
font-size: 150%;
margin-left: 2%;
margin-top: 3%;
}
a:hover{
text-decoration: underline;
color: black;
}