-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (85 loc) · 1.79 KB
/
styles.css
File metadata and controls
97 lines (85 loc) · 1.79 KB
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
*, *::before, *::after {
box-sizing: border-box;
font-family:monospace;
font-size: 16px;
}
body {
background-image: url(background.png);
background-size:cover;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
.container {
text-align: center;
width: 800px;
max-width: 80%;
background-color: rgb(202, 240, 247);
padding: 10px;
border-radius: 12px;
box-shadow: 0 0 20px 2px;
}
.btn-grid2 {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 5px;
margin-bottom: 40px;
width:40px;
}
.btn1 {
background-color: hsl(160, 80%, 54%);
border: 2px solid hsl(160, 15%, 54%);
border-radius: 12px;
padding: 4px 10px;
color: rgb(0, 0, 0);
outline: none;
}
.btn1:hover {
border-color: black;
}
.btn2 {
background-color: hsl(160, 80%, 54%);
border: 2px solid hsl(160, 15%, 54%);
border-radius: 12px;
padding: 4px 10px;
color: rgb(0, 0, 0);
outline: none;
}
.btn2:hover {
border-color: black;
}
.btn-grid {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 5px;
margin-top: 40px;
}
.btn {
background-color: hsl(160, 80%, 54%);
border: 2px solid hsl(160, 15%, 54%);
border-radius: 12px;
padding: 4px 10px;
color: rgb(0, 0, 0);
outline: none;
}
.btn:hover {
border-color: black;
}
.dad {
background-color: hsl(160, 80%, 54%);
border: 2px solid hsl(160, 15%, 54%);
border-radius: 12px;
padding: 4px 10px;
font-size: 22px;
font-style:italic;
color: rgb(0, 0, 0);
outline: none;
position:relative;
top: -70px;
width: fit-content;
padding: 4px 10px
}