-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (84 loc) · 1.42 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
body{
text-align: center;
}
h1{
font-size: 100px;
}
h2{
position:fixed;
bottom:0;
right:0;
margin:10px;
padding:3px;
}
button{
padding: 20px;
margin: 45px;
background: skyblue;
color:white;
border: 5px solid skyblue;
border-radius: 25px;
font-size: 50px;
font-family: Tahoma;
}
button:hover{
background: white;
color:skyblue;
}
button:disabled{
background: whitesmoke;
color:rgb(55, 176, 224);
}
#after{
display: none;
}
#before{
display: block;
}
input{
text-align: center;
font-size: 50px;
color: skyblue;
background-color: white;
border: 5px solid skyblue;
border-radius: 25px;
padding: 25px;
align-self: center;
}
input:hover{
color: white;
background-color: skyblue;
}
@media ( max-width:1020px){
button{
margin: 35px;
font-size: 35px;
}
}
@media ( max-width:700px){
input{
font-size: 30px;
padding: 10px;
border: 3px solid skyblue;
}
button{
font-size: 30px;
margin: 20px;
padding: 10px;
}
}
@media ( max-width:450px){
input{
font-size: 20px;
padding: 5px;
border: 1px solid skyblue;
}
button{
font-size: 17px;
margin: 15px;
padding: 7px;
}
h1{
font-size: 45px;
}
}