-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
120 lines (117 loc) · 1.93 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
/* Custom CSS */
body{
font-family: sans-serif;
background-image: url(bg.jpg);
background-size: cover
}
#jamal{
float: left;
}
#bilal{
float: right;
}
.format{
color:white;
width:40%;
margin:1rem;
text-align:center;
padding: 4rem 0;
font-size:2rem;
font-weight:lighter;
}
.wrapper{
clear:both;
}
.btn{
display:block;
padding:1rem;
border-color:transparent;
font-size:1rem;
color:white;
width:9rem;
margin:0 auto;
outline:none;
position: relative;
}
.btn:hover{
top:2px;
left:2px;
cursor: pointer;
}
.btn:hover::after{
opacity: 0.4;
transition: 0.4s;
}
.dynamic-shadow{
font-family:sans-serif;
position:relative;
background:linear-gradient(to bottom left, #F98C0A, #AD090C);
border-radius:6px;
z-index:1
}
.dynamic-shadow::after{
content:'';
position:absolute;
width:100%;
height:100%;
top:0.5rem;
left:0.5rem;
background:inherit;
filter:blur(0.7rem);
opacity:0.7;
border-radius:inherit;
z-index:-1;
}
/* Accordion */
.accordion{
/*background-color: #eee;*/
color: white;
cursor: pointer;
padding: 18px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
background-color: #EE7A0A;
border-radius: 6px;
color: white;
display: none;
overflow: hidden;
}
/* Toggleable Tabls */
.tab {
overflow: hidden;
border: 1px solid brown;
/*background-color: #f1f1f1;*/
}
.tab button {
background-color: inherit;
border-radius: 6px;
color: white;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}
.tab button:hover {
background-color: #EE7A0A;
}
.tab button.active {
background-color: #EE7A0A;
}
.tabcontent {
display: none;
color: white;
padding: 6px 12px;
border: 1px solid brown;
border-top: none;
}