This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (82 loc) · 1.49 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
html{
scroll-behavior: 0;
}
body{
margin: 0;
background-image: url(https://cdn.suwalls.com/wallpapers/photography/telescopes-at-dusk-37852-3840x2160.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
#app{
width: 100%;
}
.loading-font{
text-align: center;
font-family: News Cycle;
margin-top: 30vh;
font-size: 40px;
color: white;
}
.title h1{
color: white;
text-align: center;
font-family: Alata;
font-size: 90px;
margin-top: 20px;
font-weight: lighter;
}
.input-group{
max-width: 80%;
margin-top: 30px;
margin-left: auto;
margin-right: auto;
}
#result-box{
overflow: auto;
height: calc(100vh - 50vh + 20px);
width: 80%;
margin: 0 auto;
}
@media (max-width: 1000px){
.title h1{
font-size: 30px;
}
#result-box{
height: 70vh;
}
}
.resultcard{
background-color: rgba(255, 255, 255, 0.5);
padding: 10;
margin-top: 10;
border-radius: 10px;
}
.resultcard a{
color: black;
font-weight: bolder;
}
::-webkit-scrollbar-thumb{
background: rgba(255, 255, 255, 0.5);
}
::-webkit-scrollbar-track{
background: transparent;
}
::-webkit-scrollbar{
width: 7px;
}
@media (min-width: 1000px){
.obsbox-handler{
display: flex;
}
.obsbox-data{
color: white;
padding-left: 20px;
}
}
@media (max-width: 1000px){
.obsbox-data{
color: white;
padding-top: 20px;
}
}