-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
77 lines (76 loc) · 1.33 KB
/
style.css
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
body {
font-family: "IBM Plex Sans", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.container {
display: flex;
margin: 20px;
}
.guide {
flex: 1;
padding: 50px;
position: relative;
}
.app {
flex: 2;
position: relative;
border: 2px dashed #F3153C;
}
#yoursaas {
position: absolute;
right: 3px;
top: 10px;
width: 150px;
}
#github-link img {
position: absolute;
left: 50px;
top: 20px;
width: 30px;
}
.guide p {
font-size: 16px;
line-height: 1.5;
max-width: 80%;
}
.guide p.small {
font-size: 14px;
color: #666;
}
.guide p b {
color: #007bff;
}
input, select, textarea {
display: block;
box-sizing: border-box;
width: 100%;
border-radius: 0;
}
.app-event-form {
max-width: 400px;
padding: 20px;
border: 1px solid #f5f5f5;
box-shadow: 2px 8px 14px gray;
}
.app-event-form {
display: flex;
flex-direction: column;
gap: 10px;
}
.app-event-form input,
.app-event-form textarea {
padding: 10px;
border: 2px solid #007bff;
border-radius: 5px;
outline: none;
}
.app-event-form input[type="submit"] {
padding: 10px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
cursor: pointer;
}
.app-event-form input[type="submit"]:hover {
background-color: #0056b3;
}