forked from avionschool/batch12-fe-activities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (86 loc) · 1.3 KB
/
style.css
File metadata and controls
102 lines (86 loc) · 1.3 KB
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
body {
color: #024249;
}
.row-flex {
display: flex;
/*width: 95%;*/
flex-direction: row;
}
.column-flex {
display: flex;
width: 100%;
flex-direction: column;
margin-top: 15px;
}
.col-20 {
flex: 20%;
}
.col-80 {
flex: 80%;
}
#sidebar {
background-color: #FA7F72;
height: 620px;
position: fixed;
width: 200px;
}
#content {
margin-left: 200px;
padding: 5px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
margin-top: 50px;
}
li a {
display: block;
color: white;
padding: 10px;
text-decoration: none;
font-weight: bold;
text-align: center;
}
/* Change the link color on hover */
li a:hover {
background-color: #555;
color: white;
}
#portfolio li {
background-color: #ededed;
border: 1px solid white;
width: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
#portfolio li a{
color: #024249;
}
#portfolio li a:hover{
color: white;
}
.active-li {
background-color: #555 !important;
}
.active-li a {
color: white;
}
#title {
color: white;
padding: 16px;
background-color: #389393;
text-align: center;
}
#landing-page {
background-color: #EBEBEB;
clip-path: polygon(0 0, 100% 0%, 100% 93%, 0% 100%);
padding: 40px;
}
#portfolio {
background-color: #16817A;
clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
padding: 50px;
color: white;
}