-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (90 loc) · 1.41 KB
/
style.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
*{
margin: 0%;
padding:0%;
}
body{
font-family: 'Bebas Neue', cursive;
background-color:indianred;
}
.conteinar{
background-color: azure;
max-width:1000px;
margin:0 auto;
padding:18px;
}
.profile-img{
width:100px;
height:110px;
border:4px solid hotpink;
border-radius:60%;
float: left;
}
.header-bio{
float: left;
padding:16px;
}
.hover-color:hover{
color: black;
}
h1,h2,h3,h4,h5,h6{
color:lawngreen;
}
.header-contact a{
text-decoration: none;
color: teal;
font-style: italic;
}
.header-contact{
float: right;
padding: 20px;
}
.header-contact a:hover{
text-decoration: underline;
color: black;
}
.clear-div{
clear: both;
}
hr{
border: 4px solid black;
width: 100%;
margin:25px auto;
border-bottom: none;
}
.left-div{
width: 20%;
float: left;
}
.right-div{
width: 80%;
float: right;
color: aquamarine;
}
.edu-template-left{
float: left;
width: 45%;
padding: 0px 16px;
}
.edu-template-right{
float: right;
width: 45%;
padding: 0px 16px;
}
.bottom-style{
background-color: black;
background-position: 1000%;
text-align: center;
padding: 8px;
}
.bottom-style a,p{
color: blue;
text-decoration: none;
padding: 10px;
}
.bottom-style p:hover{
color: antiquewhite;
}
.bottom-style a:hover{
color: antiquewhite;
text-decoration: underline;
}