-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (84 loc) · 1.69 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
* {
font-family: 'Roboto Mono', monospace;
}
body {
margin: 0;
padding: 0;
}
.page {
margin: 1% 10%;
padding: 0.5% 2%;
/* border: solid; */
}
@media screen and (max-width: 600px) {
.page {
margin: 0px;
}
}
h2 {
text-align: center;
font-size: 40px;
color: green;
}
h3 {
font-size: 2em;
color: green;
border-bottom: 2px solid green;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
margin-bottom: 0px;
font-family: Helvetica, sans-serif;
}
.panel {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
box-shadow: 3px 3px 7px grey;
padding: 5px;
margin: 10px;
}
.panelHead {
padding-left: 15px;
margin: 0;
}
.panelBody {
/* margin-top: 0px;
padding-bottom: 0px; */
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
font-family: Helvetica, sans-serif;
}
.panel:hover {
transition-delay: 0s;
transition-duration: 0.3s;
box-shadow: 5px 5px 20px black;
-moz-box-shadow: 5px 5px 20px black;
-webkit-box-shadow: 5px 5px 20px black;
-o-box-shadow: 5px 5px 20px black;
}
.centerImage {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 50%;
box-shadow: 5px 5px 20px grey;
}
/* Glass buttton Styling */
.glass-toggle {
/* background: #100f2c; */
background-image: linear-gradient(#C6FFDD, #FBD786, #f7797d);
color: aliceblue;
width: 4rem;
height: 4rem;
position: fixed;
border-radius: 50%;
right: 32px;
top: 32px;
left: unset;
cursor: pointer;
transition: all 0.5s ease;
display: flex;
justify-content: center;
align-items: center;
}