-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (76 loc) · 1.52 KB
/
style.css
File metadata and controls
91 lines (76 loc) · 1.52 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
/* @font-face {
font-family: "LimeLight";
src: url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');
} */
@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');
body {
background-image:
radial-gradient(#006E7A 13%, transparent 13%),
radial-gradient(#006E7A 13%, transparent 13%);
background-position: 0px 0px, 12px 12px;
background-size: 24px 24px;
background-color: #00A5B8;
}
a {
text-decoration: none;
}
#canvas {
display: block;
margin: auto;
background: #fff;
border: 3px solid #4B4448;
}
.container {
display: flex;
justify-content: center;
}
.text-box {
margin-left: auto;
margin-right: auto;
margin-bottom: 15px;
width: 20%;
background-color: #F46786;
border: 3px, Solid, #4B4448;
border-radius: 10px;
font-family: "Limelight", sans-serif;
font-size: 20px;
color: #101010;
display:flex;
justify-content: center;
align-items: center;
}
.title-card{
font-size: 40px;
width: 65%;
height: 130px;
font-weight: bold;
}
.subhead {
font-size: 30px;
width: 50%;
height: 50px;
margin-bottom: 30px
}
.button {
border-radius: 30px;
transition:background 0.2s ease transform 0.2s ease;
cursor: pointer;
}
.button:hover {
transform: scale(1.2);
border: 2.8px Solid #000;
}
.button:active {
background-color: #670000;
}
/* preview image */
.preview{
display:block;
margin:2rem auto 0;
max-width:450px;
border-radius: 10px;
border: 2.8px Solid #000;
width:80%;
opacity:0;
transition:opacity 0.2s ease;
}