-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (104 loc) · 2.08 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600&display=swap");
body{
width: 100%;
height: 100%;
font-family: 'Mullish', sans-serif;
background-image: linear-gradient(to right, #92fe9d 0%, #00c9ff 100%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.content, .text{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.content{
margin-top: 7rem;
}
h2{
padding-bottom: 3rem;
font-weight: 600;
font-size: 2rem;
}
p{
padding-bottom: 3rem;
font-weight: 500;
}
.button, .ply-again{
width: 8rem;
height: 2rem;
margin-top: 1.5rem;
background-color: aquamarine;
border: 0;
border-radius: 0.2rem;
font-size: 1.3rem;
cursor: pointer;
margin-top: 3rem;
}
.button:hover{
cursor: pointer;
background-color: green;
transition: 500ms all;
color:white;
}
.ply-again:hover{
cursor: pointer;
transition: 500ms all;
color:white;
}
#input{
width: 9rem;
height: 1.9rem;
font-size: 1rem;
border-radius: 4px;
border: 0.2px solid black;
padding: 5px;
}
#result{
padding-top: 2rem;
}
.text p{
margin-top: 1.2rem;
padding-top:1rem;
padding-bottom:1rem;
font-weight: 600;
}
span{
font-weight: 600;
}
new{
display: none;
}
@media screen and (max-width: 520px) {
h2 {
font-size: 1.3rem;
}
p{
font-size: 0.8rem;
}
#input{
width:7rem ;
height: 1.6rem ;
font-size: 0.7rem;
padding: 3px;
}
.button, .ply-again{
width: 6rem;
height: 1.5rem;
margin-top: 1.5rem;
background-color: aquamarine;
border: 0;
border-radius: 0.2rem;
font-size: 0.8rem;
cursor: pointer;
margin-top: 3rem;
}
}