-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (70 loc) · 1.39 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
/* each row: 21px
row count : 16
container height & width: 21*16 = 336px
*/
* {
font-family: 'Dosis', sans-serif;
}
body {
height: 100vh;
background: hsl(251, 55%, 38%);
/* fallback for old browsers */
background: linear-gradient(to bottom left, hsl(222, 100%, 80%) 50%, hsl(251, 55%, 69%) 50%);
background-repeat: no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
h1{
background-color: #EDDEA4;
padding: 10px 20px;
border: double thick #21005e;
border-radius: 50px;
}
button {
padding: 10px 15px;
font-size: medium;
border-radius: 25px;
background-color: #EDDEA4;
border: 1px solid black;
cursor: pointer;
}
input {
appearance: none;
width: 50px;
height: 50px;
background-color: transparent;
border: none;
cursor: pointer;
}
input::-webkit-color-swatch {
border-radius: 15px;
border: 1px solid black;
}
input::-moz-color-swatch {
border-radius: 15px;
border: 1px solid black
}
.menu {
width: 50vw;
margin: 20px;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.container {
width: 500px;
height: 500px;
background-color: white;
border: 1px solid black;
}
a{
color: black;
}
@media screen and (max-width : 500px){
h1{
font-size: 20px;
}
}