-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage10.css
162 lines (120 loc) · 2.06 KB
/
page10.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
162
/* CODE FOR ALERT BOX
https://www.w3schools.com/howto/howto_js_alert.asp
*/
#wrapper{
width:100%;
display:flex;
margin-left:150px;
margin-top:100px;
justify-content:center;
}
body{
justify-content:center;
margin:auto;
}
html{
background: url(images/HospitalHallway3.jpg) no-repeat center center fixed;
background-size:cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
img{
box-shadow: 15px 15px 10px rgb(0,0, 0, 0.5);
}
.door1
{
justify-content:center;
margin:auto;
}
.door2
{
justify-content:center;
margin:auto;
}
.d1
{
width:40%;
}
.d2{
width:40%;
}
/*ALERT BOX ON TOP OF THE PAGE*/
.alert {
padding: 20px;
background-color: #023047;
color: white;
text-align:center;
font-family: 'Xanh Mono', monospace;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
span
{
text-align:center;
}
/*TIMER MATERIAL*/
.base-timer {
position: relative;
width: 10%;
margin:auto;
float: right;
}
.base-timer__circle {
fill: none;
stroke: none;
}
.base-timer__path-elapsed {
stroke-width: 7px;
stroke: #FFDEAD;
}
/*TIME- ADJUST MARGIN SIZE FOR PLACEMENT*/
.base-timer__label {
position: absolute;
width: 100%;
height: 100%;
top: -2%;
display: flex;
align-items: center;
justify-content: center;
font-family: "Nosifer", cursive;
font-size: 30px;
color: #FFF8DC;
}
/*MOBILE DEVICES*/
@media screen and (max-width: 700px){
html{
width:80%;
}
#wrapper{
width:70%;
display: block;
margin-left:170px;
margin-bottom:30px;
}
.d1
{
min-width: 50%;
}
.d2{
min-width:50%;
}
.default{
padding:10px;
}
.box{
margin-left:100px;
}
}