-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
81 lines (68 loc) · 1.25 KB
/
styles.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
body, button, input {
font-family: 'Montserrat', sans-serif;
cursor: default;
}
body {
margin: 72px 140px 0;
background-color: rgba(131, 231, 238, 0.541);
}
h1 {
font-weight: 800;
font-size: 74px;
}
#controls {
display: inline-block;
width: 46%;
border-right: 1px solid rgba(0, 0, 0, .5);
padding-bottom: 42px;
padding-right: 42px;
}
.input-group {
margin: 26px 0;
}
label {
display: inline-block;
width: 24%;
font-weight: 200;
font-size: 30px;
padding: 12px;
}
input {
width: 60%;
font-size: 30px;
border: none;
border-bottom: 1px solid rgba(0, 0, 0, .5);
padding-left: 6px;
font-weight: 200;
outline: none;
}
input:disabled {
background-color: white;
opacity: .6;
}
button {
padding: 12px 62px;
background-color: #222;
color: white;
border: none;
outline: none;
}
button:hover {
opacity: .9;
}
button:disabled {
opacity: .3;
}
h2 {
display: inline-block;
vertical-align: top;
font-weight: 200;
font-size: 144px;
margin: 12px 0;
padding-left: 100px;
}
/*Styled the txt id*/
#txt {
font-size: 23px;
font-weight: 900;
}