-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 1.07 KB
/
style.css
File metadata and controls
63 lines (56 loc) · 1.07 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
@charset "UTF-8";
* {
margin: 0;
padding: 0;
/*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
}
html,
body {
width: 100%;
height: 100%;
}
body {
margin: 0;
font-family: "맑은고딕","Malgun Gothic",serif;
font-size: 22px;
color: #ffffff;
overflow: hidden;
padding: 10px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
background: #000;
}
main {
background-color: rgba(0, 0, 0, 0.58);
border-radius: 10px;
width: 100%;
max-width: 900px;
height: 480px;
padding: 20px;
box-sizing: border-box;
}
button {
display: block;
margin-bottom: 20px;
font-size: 18px;
line-height: 18px;
width: 300px;
}
.button {
margin-bottom: 10px;
background-color: rgba(0, 0, 0, 0.1);
padding: 10px;
color: #fff;
cursor: pointer;
width: 120px;
}
.rectangle {
width: 100%;
height: calc(100% - 50px);
--start: hsl(0, 100%, 50%);
--end: hsl(322, 100%, 50%);
background-image: linear-gradient(-135deg, var(--start), var(--end));
}