-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.php
73 lines (61 loc) · 2.06 KB
/
style.php
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
<!DOCTYPE html>
<html>
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="image/favicon.png" type="image/png">
<title>Calculator Design With PHP</title>
<meta name="description" content="Calculator by PHP ">
<meta name="keywords" content="HTML, CSS, JavaScript,JQUERY,PHP">
<meta name="author" content="Rahat Ahmed">
<!-- Mobile Specific Metas
Mobile Specific Metas
================================================== -->
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<style type="text/css">
body{scroll-behavior: smooth;background:#e20c55;
}
.hasan{top:50%;left:50%;transform:translate(-50%,-50%);position:absolute;background:#e20c55;color:#123;font-weight:600;font-family:cursive;font-size:33px;padding:50px;}
.hasan::placeholder{font-size:34px;}
.inputfield{
font-size: 23px;font-weight:500;font-family:cursive;
}
input[type="number"] {
font-size: 23px;
color: #fff !important;
}
.hasan input {
outline: none;
border: none;color: #fff;
font-size: 20px;
font-weight: 500;
font-family: cursive;
padding: 12px;
border-bottom: 4px solid #0818bb;margin:30px 0px;
-webkit-border-radius: 48px;
border-radius: 48px;
background: #361a24;
-webkit-box-shadow: 5px 5px 58px #5a0522, -5px -5px 58px #ff1388;
box-shadow: 5px 5px 58px #5a0522, -5px -5px 58px #ff1388;
}
select {
padding: 12px;
background: #123;
color: #fff;
font-size:20px;
font-weight: 700;
-webkit-border-radius: 50px;
-webkit-border-radius: 48px;
border-radius: 48px;
background: #e20c55;
-webkit-box-shadow: 5px 5px 58px #5a0522, -5px -5px 58px #ff1388;
box-shadow: 5px 5px 58px #5a0522, -5px -5px 58px #ff1388;
}
</style>
</body>
</html>