-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (99 loc) · 2.23 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (99 loc) · 2.23 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
103
104
105
106
107
108
109
.header {
color: black;
text-align: center;
border: 2px solid black;
border-radius: 3px;
padding: 10px;
background-image: url('https://i0.wp.com/css-tricks.com/wp-content/uploads/2020/11/css-gradient.png?fit=1200,600&ssl=1');
overflow: hidden;
white-space: nowrap;
}
.header-panel {
display: flex;
align-content: space-between;
justify-content: space-between;
border: 1px solid black;
border-radius: 3px;
padding: 3px;
background-image: url('https://digitalsynopsis.com/wp-content/uploads/2017/02/beautiful-color-gradients-backgrounds-013-heavy-rain.png');
}
.button {
cursor: pointer;
}
.button-container {
display: flex;
width: 100px;
justify-content: space-between;
overflow: hidden;
}
.fa-house-chimney,
.fa-book,
.fa-code {
cursor: pointer;
}
.fa-bars:hover {
color: red;
}
.expandable-panel {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
height: auto;
width: auto;
border: 1px solid black;
border-radius: 3px;
background-image: url('https://elementor.com/cdn-cgi/image/f=auto,w=1024,h=576/marketing/wp-content/uploads/sites/9/2021/09/2-radial-color-gradient-example-1024x576.jpg');
overflow: hidden;
transition: 1000ms linear 1ms;
}
.expand-bars {
display: flex;
justify-content: flex-end;
}
.techno-section {
display: flex;
align-items: center;
justify-content: space-around;
height: 80px;
width: 100%;
border: 2px solid;
border-radius: 3px;
background-color: #1cd8d2;
box-shadow: 7px 11px 30px -2px;
}
.p-language {
display: flex;
align-items: center;
justify-content: center;
height: 40%;
width: 10%;
border: 1px solid black;
background-color: #ffffff;
white-space: normal;
overflow: hidden;
border-radius: 3px;
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
font-size: 12px;
line-height: 12px;
cursor: pointer;
box-shadow: 10px 10px 10px 0px;
transition: background-color 500ms ease-out 2ms;
}
.p-language:hover {
background-color: #0abfbc;
}
.empty-space {
height: 80px;
width: 100%;
}
.random-class-collapse {
content: url('./icons/down_arrow.svg');
transition: 500ms linear 1ms;
}
.random-class-expand {
content: url('./icons/up-arrow.svg');
transform: rotate(180deg);
}