-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
155 lines (128 loc) · 2.69 KB
/
index.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
148
149
150
151
152
153
154
/* Element | file:///G:/My%20Drive/Software%20engineering/3-1/Web%20Technologies/CV/index.html */
.topContainer {
width: 100%;
height: 20vh;
background: #cfcfdb;
padding: 3px;
margin: 5px;
border-radius: 5%;
font-size: 1vw;
box-shadow: 5px 5px #021eb582;
}
.image {
margin-left: 50%;
border-radius: 50%;
height: 100%;
width: 40%;
}
.img {
height: 20vh;
display: flex; float: left;
width: 20vw;
/*flex-wrap: wrap;
align-content: center; */
}
.img {
/* height: 100%;
width: 25%;
display: flex;
flex-wrap: wrap;
align-content: center; */
}
.myName {
float: right;
width: 75%;
height: 100%;
}
.myName {
font-size: 100%;
font-family: Lucida Sans Typewriter;
/* width: 75%;
display: flex;
float: right;
background: lightgray;
height: 100%; */
}
.leftContainer {
font-size: 2vw;
align-self: first baseline;
background: lightgray;
float: left;
box-shadow: 5px 5px #b5fbf1;
width:28%;
text-align: center;
border-radius: 5%;
}
.lang{
text-align: center;
background: #171717;
width: 47%;
margin-left: 25%;
border-radius: 20%;
font-family: Lucida Sans Typewriter;
color: #fff;
}
.rightContainer {
font-size: 2vw;
align-self: first baseline;
float: right;
background: rgb(211, 211, 211);
width: 71%;
box-shadow: 5px 5px #bbb;
}
/* Table Part*/
.tcontainer th h4 {
font-weight: bold;
font-size: 1em;
text-align: left;
color: #8bb8cc;
}
.tcontainer td {
font-weight: normal;
font-size: 1em;
-webkit-box-shadow: 0 2px 2px -2px #0E1119;
-moz-box-shadow: 0 2px 2px -2px #0E1119;
box-shadow: 0 2px 2px -2px #0E1119;
}
.tcontainer {
text-align: left;
overflow: hidden;
width: 90%;
display: table;
}
.tcontainer td, .tcontainer th {
padding-left: 1%;
}
/* Background-color of the odd rows */
.tcontainer tr:nth-child(odd) {
background-color: #737578;
}
/* Background-color of the even rows */
.tcontainer tr:nth-child(even) {
background-color: #2C3446;
}
.tcontainer th {
background-color: #1F2739;
}
.tcontainer td:first-child { color: #e6e6e6; }
.tcontainer tr:hover {
background-color: #464A52;
-webkit-box-shadow: 0 6px 6px -6px #0E1119;
-moz-box-shadow: 0 6px 6px -6px #0E1119;
box-shadow: 0 6px 6px -6px #0E1119;
}
.tcontainer td:hover {
background-color: #FFF842;
color: #403E10;
font-weight: bold;
box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
transform: translate3d(6px, -6px, 0);
transition-delay: 0s;
transition-duration: 0.4s;
transition-property: all;
transition-timing-function: line;
}
@media (max-width: 800px) {
.tcontainer td:nth-child(4),
.tcontainer th:nth-child(4) { display: none; }
}