-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
87 lines (86 loc) · 1.48 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
77
78
79
80
81
82
83
84
85
86
87
body {
background-image: url("img/footerimage.png");
background-repeat: no-repeat;
background-size: contain;
background-attachment:fixed;
background-position:center bottom;
background-color: #95D7E5;
font-family: 'Montserrat', sans-serif;
color: #3A3A3A;
}
#maincontent {
text-align: center;
background-color: #EDEDEB;
margin: 10px;
padding: 10px;
width: 100%;
position: absolute;
left: 50%;
top: 40%;
transform: translate(-50%, -50%)
}
#maincontent p {
width: 40%;
text-align: center;
display: inline-block;
}
#h1 {
text-align: center;
}
#hello {
font-size: 40px;
text-align: center;
}
p {
font-size: 20px;
text-align: center;
}
#emojitext {
font-size: 20px;
}
#welcome {
position: absolute;
left: 50%;
top: 40%;
transform: translate(-50%, -50%)
}
#join, #signin {
display:inline-block;
margin: 20px;
padding: 20px;
font-size: 20px;
opacity: 0.8;
}
#join:hover, #signin:hover {
transition:all 0.2s;
opacity: 1;
}
#join {
background-color: #32A8CC;
color: #3A3A3A;
border-radius: 20px;
}
#signin {
background-color: #3A3A3A;
color: #EDEDEB;
border-radius: 20px;
}
header img {
padding-left: 10px;
padding-right: 10px;
margin-top: 10px;
}
#debilitating, #intense, #mild, #nopain {
font-family: "Times New Roman";
font-size: 100px;
display:inline-block;
margin: 10px;
padding: 10px;
opacity: 0.5;
text-align: center;
}
#debilitating:hover, #intense:hover, #mild:hover, #nopain:hover {
font-size: 120px;
opacity: 1;
transition:all 0.2s;
}