-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
50 lines (49 loc) · 882 Bytes
/
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
body{
font-size: 1.1em;
width:100%;
margin: 0 auto;
letter-spacing: 1.5px;
color: white;
}
h1{
text-align: center;
}
#head{
color: white;
}
#container{
padding: 1.5em;
background-color: black;
border-radius: 10px;
}
#billTotal{
font-family: 'Rajdhani', sans-serif;}
div{
line-height: 2.5em;
}
input[type="text"]{
font-size: 1.5em;
text-align: center;
}
label, input{
width: 100% ;
}
@media (min-width:700px){
body{
width:60%;
font-family: Verdana, sans-serif;
background: url(background.jpg) no-repeat center center fixed;
background-size: cover;
margin-top: 20px;
}
#container{
opacity: 0.9;
}
label,input{
display: inline-block;
width:40%;
}
div{
line-height: 4em;
}
}