This repository was archived by the owner on Sep 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuniversalstyle.css
More file actions
155 lines (135 loc) · 2.66 KB
/
universalstyle.css
File metadata and controls
155 lines (135 loc) · 2.66 KB
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
body{
font-family: 'Franklin Gothic Medium', Arial, sans-serif;
}
.onlyforthis {
margin: 100px;
text-align: center;
}
.outer {
border: 2px dotted black;
margin-top: 50px;
margin-left: 200px;
width: 780px;
height: 300px;
}
.namebar-one {
position: absolute;
margin-top: 100px;
margin-left: 180px;
width: 400px;
height: 30px;
}
.namebar-two {
position: absolute;
margin-top: 150px;
margin-left: 180px;
width: 400px;
height: 30px;
}
.namebar-one:focus .namebar-two:focus {
box-shadow: 0px 0px 9px skyblue;
}
.click-btn {
background-color: tomato;
border: none;
box-shadow: 0px 0px 6px gold;
border-radius: 20px;
margin-top: 210px;
margin-left: 280px;
width: 200px;
height: 30px;
}
.btn-text{
font-size: large;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Franklin Gothic , sans-serif;
color: white;
text-align: center;
margin-bottom: 50%;
}
.heading {
text-align: center;
font-size: large;
color: white;
border-radius: 20px;
background-color: slateblue;
width: 500px;
height: 50px;
margin-left: 340px;
margin-top: 30px;
font-weight: bold;
}
.calci-box {
border: 0.5px solid greenyellow;
box-shadow: 0px 0px 9px teal;
width: 90%;
height: 280px;
margin-left: 60px;
margin-top: 50px;
}
.first-number {
width: 300px;
height: 30px;
margin-left: 170px;
margin-top: 30px;
border-radius: 10px;
border: 2px solid turquoise;
}
.second-number {
width: 300px;
height: 30px;
margin-left: 70px;
margin-top: 30px;
border-radius: 10px;
border: 3px solid turquoise;
}
.dropdown {
background-color: orange;
border: none;
color: white;
text-align: center;
font-weight: bold;
font-size: large;
width: 70px;
height: 30px;
border-radius: 10px;
margin-left: 70px;
transition: transform .3s;
}
.dropdown:hover {
transform: scale(1.3);
}
.calc-btn {
background-color: greenyellow;
border: none;
border-radius: 40px;
font-weight: bold;
width: 100px;
height: 50px;
padding: auto;
margin-left: 300px;
margin-top: 30px;
transition: transform .3s;
}
.calc-btn:hover {
transform: scale(1.2);
}
.result-box {
width: 300px;
height: 30px;
margin-left: 40px;
margin-top: 0px;
border-radius: 10px;
border: 3px solid turquoise;
}
.clock-text {
background-color: crimson;
color: white;
border-radius: 30px;
height: 50px;
width: 300px;
padding-top: 8px;
margin-top: 100px;
margin-left: 460px;
text-align: center;
font-size: xx-large;
}