-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
83 lines (77 loc) · 1.29 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
* {
box-sizing: border-box;
}
body {
font-family: Helvetica,Arial,sans-serif;
font-size: 16px;
line-height: 1.5em;
margin: 0;
}
@media only screen and (max-width: 900px) {
body {
font-size: 14px;
}
}
input {
font: inherit;
color: #000;
padding: 0;
margin: 0.5em 0;
background-color: transparent;
border: none;
outline: none;
width: 100%;
border-bottom: 1px solid #757575;
}
button {
background-color: #3e50b4;
padding: 10px 30px;
font-size: 16px;
font-weight: bold;
border: none;
border-radius: 5px;
color: white;
box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.25);
}
button:hover {
cursor: pointer;
}
.header {
background-color: #3e50b4;
}
.header h1 {
font-size: 45px;
font-weight: 300;
line-height: 48px;
}
.header h1,
.header p {
color: white;
}
@media only screen and (max-width: 900px) {
.header h1 {
font-size: 22px;
line-height: 25px;
}
}
.content {
width: 95%;
max-width: 900px;
padding: 40px;
}
@media only screen and (max-width: 900px) {
.content {
padding: 16px;
}
}
#resultcontainer {
border-radius: 10px;
padding: 40px;
-webkit-transition: background-color 0.6s ease;
transition: background-color 0.6s ease;
}
#result {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 10px;
padding: 10px;
}