-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (100 loc) · 2.15 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
113
114
115
116
117
118
119
120
121
122
/* This is a style sheet for Introduction web page */
* {
font-family: cursive;
scroll-behavior: smooth;
}
body{
background-color: aliceblue;
}
h2 {
color: red;
}
header {
text-align: center;
padding: 10px;
}
header a {
color: blue;
text-decoration: none;
font-size: 15px;
font-weight: bold;
border: 1px solid blue;
border-radius: 7px;
margin: 0px 20px;
padding: 5px;
}
.smallhead {
text-align: center;
text-decoration: underline;
}
ol {
text-transform: capitalize;
}
#about {
text-align: center;
background-color: antiquewhite;
}
#para {
font-size: 20px;
border: 10px double #ff8585;
border-radius: 20px;
padding: 20px;
}
#about img{
border: 2px solid black;
border-radius: 100px;
transition: transform 5s ease-in-out;
}
#about img:hover{
transform: rotateY(360deg);
perspective: 10px;
}
ol, ul{
font-weight: bold;
}
#contact h2+a{
color: red;
}
.resume:link{
color:blueviolet;
}
.resume:visited{
color: black;
}
.resume:active{
color: red;
}
header a:hover{
font-size: 18px;
color: chartreuse;
background-color: black;
}
#fname:focus,#lname:focus{
width: 20%;
}
ul li:first-child, ul li:last-child{
color: coral;
}
#edu{
background-image: url('https://images.unsplash.com/photo-1562774053-701939374585?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1064&q=80');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
#cinema{
background-image: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=625&q=80');
/* background-repeat:repeat-x; */
}
#up{
position: fixed;
background-color: black;
color: red;
font-size: 20px;
border: 2px solid red;
border-radius: 100px;
text-decoration: none;
padding: 12px;
right: 20px;
bottom: 20px;
}