-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (101 loc) · 1.92 KB
/
style.css
File metadata and controls
117 lines (101 loc) · 1.92 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Madimi+One&display=swap');
* {
margin: 0;
padding: 0;
}
:root {
--primary-color: #BCEBCB;
--secondary-color: #F7FFF6;
--text-color: #60e36b;
}
body {
font-family: "Madimi One", sans-serif;
font-weight: 400;
font-style: normal;
background-color: var(--primary-color);
}
main {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 90vh;
}
h1 {
margin: 10px 0;
font-size: 7vmin;
}
.container {
height: 60vmin;
width: 60vmin;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 3%;
}
.box {
display: flex;
justify-content: center;
align-items: center;
font-size: 8vmin;
outline: none;
border: none;
height: 31%;
width: 31%;
color: white;
color: var(--text-color);
background-color: var(--secondary-color);
border-radius: 10px;
box-shadow: 4px 3px 4px rgba(0, 0, 0, 0.5);
}
#reset {
padding: 1.5vmin 4vmin;
font-size: 1rem;
background-color: black;
color: var(--text-color);
border-radius: 10px;
}
#modal,
.content,
footer,
.social-icons {
display: flex;
justify-content: center;
align-items: center;
}
#modal {
display: none;
height: 100vh;
width: 100vw;
z-index: 1;
position: absolute;
background-color: rgba(0, 0, 0, 0.5);
}
#modal .content {
padding: 5vmin 8vmin;
border-radius: 10px;
background-color: var(--primary-color);
flex-direction: column;
font-size: 1.5rem;
}
.content span {
display: inline-block;
font-size: 1.8rem;
}
#turn {
margin: 4vmin 0 3vmin 0;
text-align: center;
font-size: 6vmin;
}
footer{
width:100%;
position: absolute;
bottom: 1vmin;
flex-direction: column;
text-align: center;
}
.social-icons a{
color: black;
margin-right: 2vmin;
}