-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (73 loc) · 1.48 KB
/
style.css
File metadata and controls
83 lines (73 loc) · 1.48 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
* {
padding: 0;
margin: 0;
}
body {
font-family: 'Roboto Mono', 'open sans';
background-color: rgb(238, 238, 238);
color: rgba(20, 20, 20, 0.8);
height: 100vh;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
margin: 0;
padding: 0;
}
button {
height: fit-content;
border-radius: 20px;
}
.body {
position: relative;
background-color: white;
border: 2px solid rgb(70, 70, 70);
border-radius: 30px;
max-width: 580px;
width: 580px;
height: 140px;
display: flex;
justify-content: center;
margin: 0 auto;
padding: 18px;
}
.header {
font-size: 27px;
margin-bottom: 70px;
}
.generate-btn {
background-color: rgb(250, 200, 40);
position: absolute;
font-weight: 600;
font-size: 20px;
bottom: 17px;
height: 35px;
width: 180px;
cursor: pointer;
margin: 0px 5px;
}
.text {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background-color: rgb(238, 238, 238);
border: 2.5px solid black;
border-radius: 27px;
font-weight: 500;
font-size: 12px;
width: 480px;
height: 40px;
margin: 8px;
padding: 13px;
}
.generate-btn:hover {
background-color: rgb(255, 214, 80);
}
.generate-btn:active {
background-color: rgb(239, 183, 0);
}