-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCV.css
More file actions
109 lines (93 loc) · 2.1 KB
/
CV.css
File metadata and controls
109 lines (93 loc) · 2.1 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
body {
background-color: lightblue;
}
h2 {
text-align: center;
color: rgb(255, 255, 255);
font-size: 40px;
font-family: "monospace";
}
#Skills {
margin-top: 50px;
}
input {
text-align: center;
padding: 5px;
border-radius:10px;
}
.General{
text-align: center;
}
.Additional {
text-align: center;
color: rgb(3, 48, 90);
}
.About { grid-area: topPage; }
.Skills { grid-area: downRight; }
.Experience { grid-area: downLeft; }
#Button { grid-area: button;}
div div{
border: 2px solid black;
}
.grid{
display : grid;
grid-template-areas:
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' topPage topPage topPage topPage'
' downLeft downLeft downRight downRight'
' downLeft downLeft downRight downRight'
' downLeft downLeft downRight downRight'
' button button button button '
' button button button button ';
grid-gap: 3px;
background-color: lightblue;
padding: 3px;
text-align: center;
font-size: 40px;
}
.About{
background-color: lightcyan;
padding: 5px;
}
.Skills{
background-color: lightcyan;
padding-top: 50px;
padding-bottom: 50px;
}
.Experience{
background-color: lightcyan;
padding-top: 50px;
padding-bottom: 50px;
}
div{
height: 20vh;
display: flex;
justify-content: center;
}
button{
text-align: center;
border: black;
color: white;
background-color: black;
animation-name: blink;
animation-duration: 4s;
animation-iteration-count: infinite;
font-size: 50px;
}
@keyframes blink{
0% {background-color: lightblue; border-radius: 0%}
50%{background-color: wheat; border-radius: 30%}
70%{background-color: lightgrey; border-radius: 60%}
100%{background-color: lightblue; border-radius: 80%}
}
@media not screen and (max-width: 1024px){
body {
background-color: lightcyan;
}
}