-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
126 lines (112 loc) · 2.19 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
body {
font-family: Arial, sans-serif;
background: linear-gradient(45deg,black,rgb(4, 4, 77));
margin: 0;
padding: 0;
}
.header {
background-color: #240342;
position: relative;
width: 39.6cm;
height: 1cm;
color: #e7e6df;
padding: 20px;
text-align: center;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
#pic1 {
width: 200px;
height: 200px;
margin-top: 1cm;
margin-left: -5cm;
position: absolute;
}
.container h2 {
color: yellow;
font-size:50px;
margin: 20px 100px;
}
.text {
text-align: justify;
font-size: 20px;
color: burlywood;
margin: 30px;
margin-left: 160px;
}
h1 {
font-size: 36px;
text-align: center;
margin: 20px 100px;
}
header h1{
margin-top: -30px;
}
h2 {
font-size: 24px;
color: yellow;
margin: 10px 100px;
}
#y {
margin-top: -0.5cm;
}
#y1 {
margin-top: -0.5cm;
}
#pic{
width: 30px;
height: 30px;
padding-right: 35cm;
padding-top: 0px;
transition: 1s ease-in-out;
}
#pic:hover{
width: 31px;
height: 31px;
}
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000000;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
}
.bg-\[\#072030\] {
--tw-bg-opacity: 1;
background-color: rgb(7 32 48/var(--tw-bg-opacity))
}
.lg\:from-\[\#072030\] {
--tw-gradient-from: #072030;
--tw-gradient-to: rgba(7, 32, 48, 0);
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}
.loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
#h{
color: white;
padding-right: 50px;
font-size: 30px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Hide the preloader when the page is loaded */
.loaded #preloader {
opacity: 0;
pointer-events: none;
}