-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
130 lines (115 loc) · 2.03 KB
/
index.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
123
124
125
126
127
128
129
130
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
box-sizing: border-box;
padding: 0px 0px;
margin: 0px 0px;
}
.container{
box-shadow: 0px 0px 5px 0px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
margin: 7vh 5vw;
}
.container > :first-child{
background-color: #f4f4f4;
}
.leftpane {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 30px 30px;
width: 90vw;
height: 86vh ;
}
.rightpane{
display: flex;
justify-content: center;
flex-direction: column;
padding: 30px 30px;
width: 90vw;
height: 86vh ;
}
.image{
height: 15vw;
width: auto;
}
.heading{
font-family: "Open Sans", sans-serif;
}
.abouttext{
font-family: "Open Sans",sans-serif;
margin-top: 5px;
}
.introholder{
display: flex;
flex-direction: column ;
align-items: center;
margin: 20px 20px;
}
.head{
margin-bottom: 40px;
}
.icon{
width: 25px;
height: auto;
margin: 5px 5px;
}
.sociallink{
margin-top: 20px;
padding: 10px;
}
.btnholder {
padding: 0px 0px;
display: flex;
align-items: center;
}
#hehe{
margin: 25px 0px;
}
#emailme{
margin-right: 0px;
}
.normal{
background-color: black;
color: white;
width: calc((45vw - 120px)/2);
padding: 10px 0px;
border-radius: 5px;
border: 0px;
margin-right: 30px;
font-family: "Open Sans",sans-serif;
}
/* For devices up to 600px wide */
@media (max-width: 600px) {
/* CSS rules for mobile */
.container{
flex-direction: column;
margin: 1vh;
}
.image{
height: 30vh;
/* box-shadow: 0px 0px 2px 0px; */
}
.heading{
font-size: 5.9vw;
}
.normal{
padding: 10px 25px;
width: max-content;
}
.sociallink{
margin-top: 0px;
}
.introholder{
margin: 14px 20px;
}
.head{
margin-bottom: 5px;
}
.leftpane,.rightpane{
height: 70vh;
}
}