-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
147 lines (139 loc) · 3.54 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
font-size: 16px;
}
.top-half p {
padding-left: 40px;
font-weight: 300;
padding-right: 30px;
}
.row::after {
content: "";
clear: both;
display: table;
}
.left-column {
float: left;
width: 40%;
height: 100vh; /* Set the height of the columns to 100% of the viewport height */
/* padding: 10px; */
/* box-sizing: border-box; Include padding and border in the column width */
/* background-color: #ffffff; */
/* background: linear-gradient(to bottom, #ffffff, #dfdfdf); */
}
.right-column {
float: left;
width: 60%;
height: 100vh;
/* padding: 10px; */
padding-left: 90px;
padding-right: 90px;
/* padding-top: 60px; */
box-sizing: border-box;
background-color: #ff71ff; /* e79aee */
font-weight:100;
overflow-y: scroll; /* Enable vertical scrolling */
}
.top-half {
height: 50%;
/* padding: 10px; */
box-sizing: border-box;
background-color: #ff71ff;
overflow-y: scroll; /* Enable vertical scrolling */
}
.bottom-half {
height: 50%;
background-color: #ff71ff;
/* padding: 10px; */
box-sizing: border-box;
display: flex; /* Enable flexbox layout */
flex-direction: column; /* Stack the buttons vertically */
justify-content: space-between; /* Add space between the buttons */
align-items: stretch; /* Stretch the buttons to fill the available space */
}
.button {
flex: 1; /* Make all the buttons the same height */
margin: 0;
width: 100%;
padding-left: 50px;
background: transparent;
text-align: left;
/* font-weight: bold; */
font-family: inherit;
font-size: 32px;
color: #d3e7ff;
text-decoration: none;
/* border-radius: 0px; */
border: none;
transition: background-color 0s; /* Add a hover effect */
}
/* #button1 {
border-top: 2px dotted #c985cf;
} */
/* .button.selected {
background: linear-gradient(to right, #b5f63e, #e79aee);
color: #e7e7e7;
box-shadow: inset 0px -2px 10px #bdbdbd;
} */
.button.active {
background: #b5f63e !important;
border: none;
/* font-weight:600; */
/* font-weight:900; */
/* background-color: #f6f6f6; */
/* background: linear-gradient(to right, #b5f63e, white); */
color: rgb(0, 0, 0);
/* box-shadow: inset 0px -2px 10px #bdbdbd; */
}
/* .button:disabled {
color:#d7d7d7;
background-color: #ececec;
} */
.button:not(.active):hover {
background: #d3f19c !important;
color: white;
/* font-weight:400; */
}
.button:not(.active) {
background: linear-gradient(to right, #9ec8f8, #ff71ff);
/* font-weight:400; */
}
/* .button:focus {
color: blue;
} */
/* .button:focus {
outline: none;
} */
.resume {
background-color: rgb(243, 212, 218);
/* background-image: linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px); */
background-size: 20px 20px;
background-position: -2px -2px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
/* animation: paperSlide 2s ease-in-out; */
}
/* @keyframes paperSlide {
0% {
transform: translateX(-10px);
}
100% {
transform: translateX(10px);
}
} */
.fa-brands{
color: white;
margin: 0 13px;
cursor: pointer;
padding: 18px 0;
font-size: 30px;
}
::selection {
background-color: #b5f63e; /* Set the desired background color */
color: #black; /* Set the desired text color */
}