forked from vasanthv/hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
executable file
·89 lines (89 loc) · 1.41 KB
/
home.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
77
78
79
80
81
82
83
84
85
86
87
88
89
body {
color: #212121;
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
"Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 1.2rem;
line-height: 1.5;
}
a {
color: inherit;
}
a.button {
display: inline-block;
background: #212121;
color: #fff;
border: none;
border-radius: 0.2rem;
height: 3.2rem;
line-height: 3.2rem;
font-family: inherit;
font-size: 1.25rem;
font-weight: bold;
padding: 0px 1.5rem;
cursor: pointer;
text-decoration: none;
}
label {
font-weight: bold;
}
.wrap {
width: 100%;
max-width: 640px;
margin: auto;
}
.flex {
display: flex;
}
.row {
padding: 0px 1rem;
margin: 1.25rem auto;
}
.small {
font-size: 0.75em;
}
.title {
font-weight: bold;
font-size: 1.5rem;
}
.light {
color: #989898;
}
.spacer {
height: 5rem;
}
#logo {
width: 3rem;
margin-right: 0.5rem;
}
#roomurl {
display: flex;
align-items: center;
border: 0.2rem solid #212121;
color: #212121;
font-family: inherit;
font-size: 1.25rem;
width: 100%;
height: 3.2rem;
max-width: 320px;
padding: 0px 1rem;
border-radius: 0.2rem;
box-sizing: border-box;
line-height: 2.7rem;
margin-right: 0.5rem;
}
#roomurl > span {
color: #444;
font-weight: bold;
}
#roomurl input {
border: none;
background: none;
font: inherit;
outline: none;
}
#roomurl input::placeholder {
color: #888;
}