-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
160 lines (160 loc) · 3.17 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
@import url('https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@600&display=swap');
*{
font-family: 'Mukta Malar', sans-serif;
user-select: none;
}
body{
width: 100vw;
height: 100vh;
margin: 0;
overflow: hidden;
background-color: black;
}
#logo{
width: 150px;
height: auto;
margin: 50px;
margin-bottom: 0;
cursor: pointer;
}
#right-container{
width: 400px;
height: 180px;
border-left:3px solid white ;
border-bottom:3px solid white ;
position: absolute;
right: 0;
top: 0;
display: flex;
flex-direction: column;
justify-content: center;
}
h3{
color: white;
margin: 10px;
margin-left: 30px;
}
h3>span:first-child{
margin: 0px 20px;
color: yellow;
}
fieldset{
width: 70%;
border: 2px solid white;
margin: 30px auto;
}
legend{
color: yellow;
font-size: 20px;
padding: 0 20px;
}
p{
color: white;
font-size: 30px;
text-align: left;
word-spacing: 15px;
margin: 5px 0;
margin-left: 100px;
}
#kural-exp{
font-size: 25px;
margin:10px 20px
}
#kural-exp::first-letter{
margin-left: 100px;
}
h5{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 700;
color: white;
text-align: center;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
h5>a{
color: white;
font-weight: 700;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media screen and (min-width:320px) and (max-width:768px) {
body{
width: 100vw;
height: 100vh;
margin: 0;
overflow: hidden;
background-color: black;
}
#logo{
width: 80px;
height: auto;
margin: 20px;
margin-bottom: 0;
cursor: pointer;
}
#right-container{
width: 220px;
height: 100px;
border-left:2px solid white ;
border-bottom:2px solid white ;
position: absolute;
right: 0;
top: 0;
display: flex;
flex-direction: column;
justify-content: center;
}
h3{
color: white;
margin: 0px;
margin-left:5px;
font-size: 12px;
}
h3>span:first-child{
margin: 0px 5px;
color: yellow;
}
fieldset{
width: 80%;
border: 2px solid white;
margin: 50px auto;
}
legend{
color: yellow;
font-size: 15px;
padding: 0 5px;
}
p{
color: white;
font-size: 12px;
text-align: left;
word-spacing: 3px;
margin: 5px 0;
margin-left: 5px;
}
#kural-exp{
font-size: 12px;
margin:5px 10px;
text-align: justify;
}
#kural-exp::first-letter{
margin-left: 50px;
}
h5{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 700;
color: white;
text-align: center;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
font-size: 10px;
}
h5>a{
color: white;
font-weight: 700;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
}