-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
112 lines (110 loc) · 2.78 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
h2, h3, h5, h6, body {
font-family: 'Roboto Mono', sans-serif;
font-weight: 200;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
h1 {
font-family: 'Roboto Mono', sans-serif;
font-weight: 600;
justify-content: center;
background: linear-gradient(to top, #ffeb3b 35%, transparent 5%);
margin-bottom: -10%;
}
h4 {
font-size: 13px;
font-family: 'Roboto Mono', sans-serif;
font-weight: 200;
}
a{
text-decoration:none;
color: black;
}
.main_page_header {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
column-gap: 90%;
align-content: center;
justify-content: space-evenly;
align-items: center;
justify-items: center;
background-color: white;
font-color: #ee8866;
max-height: 50px;
padding: 10px;
}
.main_page_content {
margin-top: -10%;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(2, 1fr);
row-gap: 10px;
background-color: white;
align-content: center;
justify-content: center;
align-items: center;
justify-items: center;
}
.select_something {
background-color: white;
position: relative;
z-index: 1;
display: inline-block;
color: black;
margin: auto;
padding: 0.5rem;
justify-content: center;
text-align: center;
align-items: center;
justify-items: center;
text-decoration: none;
border-radius: 0.3rem;
width: 150px;
height: 20px;
border: 0.1px #B0AB99 solid;
cursor: pointer;
_cursor: hand;
margin-top: 0.5rem;
}
.select_something2 {
background-color: white;
position: relative;
z-index: 1;
display: inline-block;
color: black;
margin-top: 200px;
padding: 0.5rem;
justify-content: center;
text-align: center;
align-items: center;
justify-items: center;
text-decoration: none;
border-radius: 0.3rem;
width: 150px;
height: 20px;
border: 0.1px #B0AB99 solid;
cursor: pointer;
_cursor: hand;
margin-top: 0.5rem;
}
.select_something:active {
transform: scale(0.98);
/* Scaling button to 0.98 to its original size */
box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.60);
/* Lowering the shadow */
}
.text_content {
text-align: center;
}
.half_background {
background: linear-gradient(to top, #57c0ce 25%, transparent 5%);
}
.shiny-progress.progress-text {
color: red;
}
.progress-bar {
font-size: 10px!important;
margin-top: 10px;
color: black
}