-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (83 loc) · 1.46 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
body {
background-image: linear-gradient(to bottom right ,#66ff33, #d9ffcc, #66ff33);
}
html{
font-family: consolas;
height: 100%;
}
.title_block{
padding: 3px;
margin: 0px auto 10px auto;
background-color: #4d9900DD;
width: 70%;
text-align:center;
text-transform: uppercase;
font-size: 20px;
color: #e6ff99;
border-radius: 30px;
}
.title_block > h1 {
margin: 0px;
}
.content {
padding: 2px;
margin: 0px auto 10px auto;
/*background-color: #ffff00EE;*/
background-image: linear-gradient(to bottom right, #999900, #e6e600);
padding: 10px;
width: 72%;
color: White;
border-radius: 15px;
}
.content > h3 {
margin: 0px;
font-weight: normal;
text-align: center;
text-transform: uppercase;
}
.calculator-inputs {
width: 50%;
height: 50%;
margin: 3px auto 3px auto;
padding: 5px;
text-align: left;
align: center;
}
.calculator-outputs {
width: 60%;
margin: 3px auto 3px auto;
padding: 5px;
text-align: center;
font-size: 30px;
font-weight: bold;
}
.calculator-inputs > input {
border-radius: 30px;
padding: 10px 10px;
border: none;
background-color: #f9ffe6;
width: 100%;
color: green;
font-size: 16px;
margin: 0px 0px 20px 0px;
}
.calculator-inputs > button {
border-radius: 30px;
padding: 10px 10px;
border: none;
color: white;
background-color: #4d9900;
font-weight: bold;
font-size: 16px;
width: 110px;
margin: 0px auto;
}
hr {
border-color: white;
}
@media screen and (max-width: 600px) {
.content {
width: 95%;
margin: 0px;
}
}