-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (101 loc) · 1.44 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
html,body{
margin:0;
padding:0;
border:0;
height:100%;
}
header{
padding: 50px;
background: #003049;
color:white;
text-align: center;
font-family:Courier;
}
h2{
font-size:30px;
}
h3{
padding:20px;
text-align: center;
}
p{
font-size: 15px;
color:darkgray;
}
.btn-area{
text-align: center;
padding: 20px 0 20px 0;
}
.btn{
background-color:#4CAF50;
color:white;
font-size: 15px; /* Set a font size */
cursor: pointer; /* Mouse pointer on hover */
}
.btn:hover{
background-color: darkgreen;
}
.btn1{
background-color: white;
cursor: pointer; /* Mouse pointer on hover */
margin: 5px 5px 5px 5px;
}
.btn1:hover{
background-color: darkgray;
}
footer{
list-style: none;
padding:10px 10px 10px 10px;
line-height: 1em;
text-align:center;
background-color: lightgray;
position: relative;
}
footer p{
color:black;
}
a{
color:lightslategrey;
}
a:hover{
color: black;
}
i{
font-size: 20px;
margin: 5px 5px 0px 5px;
}
.container{
padding:20px;
min-height: 100%;
}
section{
padding: 20px 0px 20px 0px;
max-width: 400px;
margin:auto;
}
select{
margin:5px 5px 0px 5px;
}
.choice{
display: flex;
justify-content: center;
top:0;
}
.choice-item{
padding: 10px 30px 10px 30px;
}
select{
width:80px;
}
@media screen and (max-width:900px){
.choice{
display:grid;
}
}
.result{
text-align: center;
}
input[type="radio"]{
width:50px;
margin-left: 15px;
}