-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathstyle.css
61 lines (57 loc) · 1.08 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
* {
scrollbar-width: thin;
}
/* Works on Chrome/Edge/Safari */
*::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
body{
margin:0;
padding:0;
background:#ffffff;
box-sizing: border-box;
/*background-color: #F2AA4CFF;*/
}
header{
background:#93c2db;
color:;
padding:0px;
font-family: 'Inter Regular', 'Helvetica' , 'Arial' ,san-serif;
}
h3{
text-transform: capitalize;
margin-left:20px;
color:#000000;
text-align: center;
font-family: 'Inter Regular', 'Helvetica' , 'Arial' ,san-serif;
}
iframe{
border: none;
overflow: hidden;
}
.card{
margin-top: 20px;
}
.GFG {
background-color: white;
border: 2px solid black;
color: green;
padding: 5px 10px;
text-align: center;
display: inline-block;
font-size: 20px;
margin: 10px 700px;
cursor: pointer;
border-radius: 9px;
}