-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (69 loc) · 1.45 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (69 loc) · 1.45 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
body{
background-image: url("https://thumbs.dreamstime.com/b/amazing-sunset-over-dead-sea-view-jordan-to-israel-mountains-judea-madaba-governorate-karak-reflection-sun-skies-144134409.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
h1{
text-align: center;
margin-top: 1.5%;
font-size: 5rem;
font-family: serif;
}
.card {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
height: 30rem;
background: rgba(216,226,220,0.7);
border-radius: 10px;
text-shadow: 1px 1px 1px;
}
#inp, button {
width: 80%;
text-align: center;
border-radius: 6px;
height: 40px;
border: none;
opacity: 1;
font-size: 110%;
}
#inp {
background-color: rgba(72, 163, 228, 0.6);
font-weight: bold;
}
button {
background-color: #fcbf49;
font-size: 20px;
font-weight: bold;
font-family: serif;
}
#res {
height: fit-content;
opacity: 1;
font-size: larger;
font-weight: bold;
font-family: serif;
color: rgba(0, 25, 139, 0.753);
text-align: center;
}
#res-container {
margin-top: 10px;
background: rgba(254,250,224,0.7);
}
button:hover {
background-color: #faa307;
font-size: 24px;
}
button:focus {
background-color: #faa307;
font-size: 24px;
}
@media screen and (max-height: 670px), (max-width: 500px) {
h1 {
display: none;
}
}