-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (116 loc) · 2.16 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
@import url("https://fonts.googleapis.com/css2?family=Amarante&display=swap");
/* Roboto Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
box-sizing: border-box;
padding: 0%;
margin: 0%;
}
.head {
text-transform: uppercase;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
font-size: x-large;
margin: 80px;
color: blue;
color: #484848;
text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3),
0px -4px 10px rgba(255, 255, 255, 0.3);
width: 100%;
}
.blue {
background-color: blue;
width: 100%;
height: 100px;
}
.blue-buttom {
background-color: blue;
width: 100%;
height: 300px;
display: flex;
justify-content: flex-end;
flex-direction: column;
align-items: center;
gap: 10px;
}
.heading {
width: 100%;
/* height: 200px; */
height: fit-content;
background-color: #fff;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.para {
color: #fff;
text-align: center;
}
.moiz > .ali {
background-color: aquamarine;
color: black;
margin: 20px;
padding: 20px;
}
.moiz {
background-color: rgb(168, 168, 168);
margin: 0px;
padding: 5px;
}
h1 {
align-items: center;
text-align: center;
}
.chap {
background-color: rgb(41, 190, 27);
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
body {
background-color: #fff5d7;
}
.space {
height: 50px;
}
@media screen and (max-width: 710px) {
.head {
font-size: medium;
}
}
@media screen and (max-width: 490px) {
.head {
font-size: small;
}
}
@media screen and (max-width: 400px) {
.head {
font-size: x-small;
}
}
@media screen and (max-width: 294px) {
.head {
font-size: xx-small;
}
}
#btn {
background-color: #0a0a23;
color: #fff;
border: none;
border-radius: 10px;
box-shadow: 0px 0px 2px 2px rgb(0, 0, 0);
height: 40px;
width: 100px;
}
#btn:focus {
outline-color: transparent;
outline-style: solid;
box-shadow: 0 0 0 4px #5a01a7;
transition: 0.7s;
}
#btn:hover {
background-color: #002ead;
transition: 0.7s;
}