-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (102 loc) · 1.55 KB
/
style.css
File metadata and controls
110 lines (102 loc) · 1.55 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
110
html,body{
margin:0;
padding:0;
border:0;
}
header{
padding: 50px;
background: #003049;
color:white;
text-align: center;
font-family:Courier;
}
.horizontal{
}
.menu{
display: flex;
justify-content: center;
position: sticky;
top:0;
background-color: burlywood;
}
.menu-item{
color:white;
cursor:pointer;
padding: 10px 30px 10px 30px;
width:200px;
text-align: center;
font-family: monospace;
font-size: 2em;
}
.menu-item:hover{
color: #ffffffb0;
}
.container{
padding:0px;
}
section{
padding: 50px 20px 50px 20px;
max-width:650px;
margin:auto;
}
h5{
font-weight:normal;
}
a{
color: inherit;
text-decoration: none;
}
a:hover{
text-decoration: none;
color: inherit;
}
i{
font-size: 2em;
margin: 0px 5px 0px 5px;
}
#my_photo{
border-radius:100%;
width:150px;
}
h2{
font-family: monospace;
}
#about_me, #projects, #CV{
font-family:'Segoe UI';
}
h1{
font-size: 2em;
}
@media screen and (max-width:700px){
.menu{
display:none;
}
}
.footer{
background: #fafafa;
color:#c0c0c0;
overflow:hidden;
bottom:0;
}
.footer .copyright{
list-style: none;
padding:10px 10px 10px 10px;
line-height: 1em;
text-align:center;
}
.card{
margin-top:50px;
box-shadow: 0 0 3px 1px gainsboro;
transition:0.3s;
padding:50px;
}
.card:hover{
margin-top:40px;
box-shadow: 0 3px 15px 3px gainsboro;
}
.card-title{
cursor: pointer;
}
.card-text{
cursor: pointer;
}