-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
83 lines (63 loc) · 1.39 KB
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
padding: 10px;
background-color: rgb(25, 33, 92);
font-family: "Lugrasimo", cursive;
color: #ffffff;
}
.container {
border: 4px solid white;
padding: 50px;
max-width: 700px;
background-color: rgb(71, 71, 54);
}
#top-heading {
padding: 15px 0 0 0;
border-top: 5px solid #fff;
}
.container h2, h4 {
font-weight: 100;
color: #fff;
}
.personal-details {
display: flex;
flex-direction: column;
padding-bottom: 15px;
}
.skill{
padding: 15px 0 15px 0;
border-top: 5px solid #fff;
border-bottom: 5px solid #fff;
}
.projects{
padding: 15px 0 15px 0;
}
span {
list-style: inside;
font-size: 14px;
line-height: 30px;
}
table{
margin: 0 auto;
width: 95%;
}
table, th, td, tr{
border: 1px dashed #fff;
border-collapse: collapse;
text-align: center;
padding:15px
}
a{
color: white;
text-decoration: none;
}
a:hover{
text-decoration: underline;
cursor: pointer;
}