-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (46 loc) · 864 Bytes
/
style.css
File metadata and controls
51 lines (46 loc) · 864 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,300&display=swap');
html, body {
height: 100%;
width: 100%;
font-family: 'Cormorant Garamond', serif;
}
*{
background-color:black;
}
.button{
padding:20px;
display:flex;
justify-content: space-evenly;
margin: 3px 3px;
border: 2px solid white;
border-radius: 9px;
cursor: pointer;
align-items: center;
color: white;
}
.row{
display: flex;
align-items: center;
justify-content: space-evenly;
width: fit-content;
margin: auto;
}
.row input{
display: flex;
justify-content: center;
font-size: 20px;
margin: 0;
padding: 10px 0;
border:2px solid white;
border-radius: 6px;
color: white;
}
h1{
text-align: center;
color: white;
}
.colomn{
display: flex;
align-items: center;
justify-content:space-between;
}