-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (91 loc) · 1.55 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
@charset "utf-8";
/* CSS Document */
body{
margin:0px;
background:#311D1D;
}
ul,ol,li,a,p,h1,h2,h3,h4,h5,h6{
padding:0px;
margin:0px;
list-style:none;
text-decoration:none;
}
.colortext {
color: brown;
}
.title{
text-align: center;
font-size: 100px;
font-family: cursive;
color: white;
margin-top: 25px;
margin-bottom: 47px;
}
.containor {
width: 60%;
height: auto;
overflow: hidden;
background: #6B3E3F;
}
.input {
text-align: center;
}
.btn {
text-align: center;
margin-top: 28px;
}
.inputfield {
color: white;
text-align: center;
font-weight: bold;
font-family: cursive;
border-left: #080510;
border-right: #080510;
border-style: groove;
background-color: #080510;
font-size: 110%;
width: 395px;
}
.selectbtn {
color: white;
text-align: center;
font-weight: bold;
font-family: cursive;
border-left: #080510;
border-right: #080510;
border-style: groove;
background-color: #080510;
font-size: 95%;
cursor:pointer;
}
.para {
text-align: center;
font-size: 40px;
font-family: cursive;
color: white;
margin-top: 25px;
}
.calculator {
font-family: cursive;
font-size: 78px;
color: white;
text-align: center;
margin-top: 30px;
}
.footer {
left: 0px;
right: 0px;
bottom: 4px;
text-align: center;
color: teal;
font-family: Comic Sans Ms;
font-size: 120%;
position: fixed;
}
a {
text-decoration: none;
color: red;
}
a:hover {
color: lawngreen;
}