forked from msasama/Postfix_Prefix_Evaluation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (112 loc) · 2.64 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;1,100;1,200&display=swap');
*{
margin: 0;padding: 0;
}
:root{
--maincolor: #15182d;
--secondcolor: orange;
--btncolor: #0f0f22;
--font: font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: normal;
}
.box{
width: 100vw;
height:100vh;
background-color: var(--maincolor);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
h1{
color: var(--secondcolor);
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: normal;
}
.inst{
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: normal;
font-style: italic;
color: rgb(104, 95, 95);
font-weight: bold;
}
.box input{
width: 500px;
height: 25px;
margin-right: 7px;
background-color: var(--btncolor);
color: var(--secondcolor);
}
.result{
color: var(--secondcolor);
font-family: "Poppins", sans-serif;
font-weight: 200;
font-style: 17px;
font-size: 17px;
margin-top: 20px;
}
.result input {
width: 500px; /* Set a fixed width for the input box */
height: 75px; /* Increase the height of the input box */
font-size: 32px; /* Increase the font size */
padding-left: 20px; /* Add space from the left margin */
border: 2px solid var; /* Optional: Remove the border for a cleaner look */
background-color: transparent; /* Optional: Transparent background */
color: var(--secondcolor); /* Ensure the text color matches the theme */
}
.box input::placeholder{
padding: 5px;
font-size: 12px;
color: var(--secondcolor) ;
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: bold;
}
button{
font-size: 18px;
width: 100px;
height: 30px;
padding: 3px 0px;
background-color: var(--btncolor);
color: var(--secondcolor);
border-radius: 10px;
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: normal;
padding: 1px;
border: 1px solid;
margin: 5px;
cursor: pointer;
}
button a{
text-decoration: none;
color: var(--secondcolor);
}
button:hover{
transform:scale(1.1);
background-color: rgb(16, 16, 56);
}
button:active{
background-color: black;
}
.madeby{
display: flex;
flex-direction: column;
color: var(--secondcolor);
font-family: "Poppins", sans-serif;
font-weight: 100;
position: fixed;
bottom:3px;
right: 3px;
}
.madeby a{
color: white;
text-decoration: none;
}
.madeby a:hover{
background-color: rgb(38, 24, 93);
}