-
Notifications
You must be signed in to change notification settings - Fork 0
/
indigo.css
64 lines (57 loc) · 932 Bytes
/
indigo.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
*{
text-transform: capitalize;
text-align: center;
font-family: 'Luckiest Guy', cursive;
color:black;
font-size: 30px;
}
body{
background-color: greenyellow;
}
.center{
margin: 5px;
padding: 5px;
border: 3px solid white;
background-color:lightgreen;
}
input{
background: none;
border: none;
border-bottom: 2px solid black;
}
button{
padding: 7px;
background-color: cornflowerblue;
border-radius: 5px;
width: 30%;
}
h1{
font-size: 80px;
margin: 3px;
padding: 3px;
}
button:hover{
border: 2px solid white;
cursor: pointer;
}
section{
margin: 5px;
padding: 5px;
}
@media only screen and (max-width: 600px) {
input{
width:50%;
font-size: 25px;
}
h1{
font-size: 35px;
}
button{
width:60%;
}
.center{
width:90%;
height:20%;
margin-bottom: 30%;
}
}