forked from harshitkawdia/RahulsutharR.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (102 loc) · 1.5 KB
/
style.css
File metadata and controls
120 lines (102 loc) · 1.5 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
111
112
113
114
115
116
117
118
119
120
body{
margin: 0;
padding: 0;
background-image: url("bk2.jpg");
background-repeat: repeat;
height: 500px;
background-position: center;
background-attachment: fixed;
background-size: cover;
}
.card{
width: 35%;
background: #dce2ed;
overflow: hidden;
font-family: "montserrat",sans-serif;
box-shadow: 0 0 20px #00000070;
}
.middle{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.top-section{
position: relative;
}
.top-section img{
width: 100%;
}
.menuicon{
position: absolute;
width: 22px;
left: 20px;
top: 20px;
cursor: pointer;
}
.menuicon span{
width: 100%;
height: 3px;
background: #000;
position: relative;
display: block;
margin-bottom: 6px;
opacity: .5;
transition: .4s;
}
.menuicon .s1{
left: -5px;
}
.menuicon .s2{
left: 5px;
}
.menuicon:hover span{
left: 0;
}
.name{
position: absolute;
bottom: 10%;
left: 7%;
font-size: 250%;
font-weight: 900;
opacity: .7;
}
.name span{
text-transform: uppercase;
font-weight: 600;
}
.info-section{
padding: 40px;
padding-top: 0;
color: #333;
}
h2{
position: relative;
font-size: 16px;
}
.border{
width: 30px;
height: 3px;
background: lightblue;
position: absolute;
left: 0;
bottom: -6px;
}
p{
text-align: justify;
font-size: 14px;
}
.s-m{
text-align: center;
margin-top: 20px;
}
.s-m a{
text-decoration: none;
font-size: 20px;
color: #4ee0e8;
padding: 0 14px;
transition: .4s;
}
.s-m a:hover{
color: #0ac1d8;
}