-
Notifications
You must be signed in to change notification settings - Fork 642
/
Copy pathstyle.css
151 lines (131 loc) · 2.67 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
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
/* default styling for the document */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* setting the fonts and background in the main body */
body {
font-family: "Lato", Arial, Helvetica, sans-serif;
background-color: #112d32;
color: aliceblue;
}
/* for the nabvar */
.navbar {
background: #254e58;
}
nav:hover {
box-shadow: 0px 1.4px 18px 0px #7ba8a857;
transition: 0.3s;
}
/* some styling for the container */
.container {
padding: 2rem;
}
.container-fluid a {
color: #88bdbc;
font-weight: 600;
}
.container-fluid a:hover {
color: #a0a0a0;
transition: all 0.2s;
}
input[type="text"],#requestJsonBox textarea{
background: transparent;
color: #fff;
}
/* for the radio buttons */
.form-check-input:checked {
background-color: #254e58;
border: 2px solid #f7ea38;
box-shadow:none ;
}
.form-control{
border: 2px solid #88bdbc;
}
/* focussing on clicks */
.form-control:focus{
transition: all .3s;
box-shadow: none;
color: #ffff;
border: 2px solid #f7ea38;
background: inherit;
}
#heading, label, legend, input[type="text"], btn, #json-box, #response-box {
font-weight: 600;
}
#prismPre {
max-height: 600px;
border-radius: 12px;
}
/* used prism js and css which can display the code in the form of well formatted theme */
pre[class*="language-"] {
background: transparent;
border: 1px solid #254e58;
}
/* adding a styling for the scroll */
#prismPre::-webkit-scrollbar {
width: 2px;
height: 4px;
}
#prismPre::-webkit-scrollbar-track {
background: transparent;
}
#prismPre::-webkit-scrollbar-thumb {
background: #888;
}
#response-box, #response-box span {
font-family: "Roboto Mono", "Fira Code", Arial, Helvetica, sans-serif;
font-weight: normal;
}
.deleteBtn, #addBtn, #submit-btn {
border: none;
outline: none;
box-shadow: none;
}
#submit-btn ,.deleteBtn,#addBtn {
border: 2px solid #f7ea38;
color: rgb(255, 255, 255);
background: transparent;
padding: 5px 20px;
font-weight: 600;
}
#submit-btn:hover,#addBtn:hover,.deleteBtn:hover {
background-color: #f7ea38;
color: black;
}
label {
cursor: pointer;
}
.alert-danger{
background-color: rgb(247, 72, 72);
border: none;
color: aliceblue;
}
footer {
font-family: "Poppins", Arial, Helvetica, sans-serif;
text-align: center;
color: white;
font-size: 1rem;
margin-bottom: 0;
padding: 5px;
font-weight: 600;
}
footer a {
color: #f7ea38;
text-decoration: none;
}
footer a:hover {
color: #bdb452;
border-bottom: 1px solid;
transition: all 0.25s;
}
/* some respomsiveness */
@media screen and (max-width: 410px) {
.container{
padding: 1rem;
}
.container h2{
font-size: 2rem;
}
}