-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.css
90 lines (85 loc) · 1.41 KB
/
resume.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
*{
margin: 0px;
padding: 0px;
font-family: inherit;
box-sizing: border-box;
}
body{
font-family: 'Times New Roman', Times, serif;
border-bottom: solid 18px crimson;
border-top: solid 18px crimson;
}
.container{
width: 90%;
padding: 10px 0;
margin: auto;
box-shadow: 3px 1px 3px black;
display: grid;
grid-template-columns: 40% auto;
}
.content{
width: 80%;
margin: auto;
background:white;
}
aside{
color: greenyellow;
}
aside img{
width: 180px;
height: 180px;
margin:0 20px;
}
.line{
background: rgb(43, 40, 40);
width: 80%;
height: 1px;
margin-bottom: 10px;
}
aside .small-container{
border: 1px solid black;
padding: 20px;
margin-bottom: 5px;
background-color: rgb(70, 70, 131);
border-radius: 4px;
}
aside .small-container h1{
font-weight: 600;
padding: 4px;
}
aside .small-container ul{
margin-left: 40px;
padding: 10px;
}
aside .small-container ul li{
padding: 8px;
}
main{
margin-top: 50px;
color: rgb(15, 17, 153);
}
main h1{
text-align: center;
padding: 5px;
}
main .left{
font-size: 25px;
width: 50%;
}
main .right{
margin-bottom: 20px;
}
main .right b{
color: rgb(13, 150, 150);
}
main .right h2{
font-size: 18px;
line-height: 25px;
}
@media (max-width:750px){
.container{
display: flex;
flex-direction: column;
flex-grow: 1;
}
}