-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (61 loc) · 950 Bytes
/
Copy pathindex.css
File metadata and controls
71 lines (61 loc) · 950 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
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
/* Insert your homepage styling here! */
body {
font-family: Arial, Helvetica, sans-serif;
margin: 10px 20px;
}
.navbar {
overflow: hidden;
}
.navbar a {
float: left;
color: black;
text-align: center;
padding: 15px 20px;
text-decoration: none;
}
.navbar a.hover {
background-color: #ddd;
}
.header {
text-align: center;
}
.description {
margin: 20px 40px;
}
.profile-img {
width: 250px;
height: 250px;
border-radius: 50%;
}
.left-box {
width: 250px;
float: left;
border-style: solid;
}
.right-box {
width: 250px;
float: right;
border-style: dashed;
}
.accordian {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
.active,
.accordian:hover {
background-color: #ccc;
}
.panel {
padding: 0 18px;
display: none;
background-color: white;
overflow: hidden;
}