-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (35 loc) · 696 Bytes
/
styles.css
File metadata and controls
41 lines (35 loc) · 696 Bytes
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
/*
Created on : 20 May, 2017, 12:58:19 PM
Author : Harshit
*/
* {
font-family: "Segoe UI", 'Lato', sans-serif;;
}
.title {
font-weight: 300;
font-size: 28px;
text-align: center;
margin: 50px 0px;
}
button.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 20px 30px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
background-color: #ccc;
}
div.panel {
padding: 0 30px;
background-color: #efefef;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}