Yes you can use CSS for every control in xpages either by inline styles or style classes. Heres a very quick example, these line up with the date time picker and the button next to it, 15em is the width of the date time picker text box on its own
<xp:inputText id="inputText2" style="width: 17em;"></xp:inputText>
<xp:br></xp:br><xp:br></xp:br>
<xp:comboBox id="comboBox1" style="width: 17em;"></xp:comboBox>
<xp:br></xp:br><xp:br></xp:br>
<xp:inputText id="inputText3">
<xp:dateTimeHelper id="dateTimeHelper2"></xp:dateTimeHelper>
<xp:this.converter>
<xp:convertDateTime type="date"></xp:convertDateTime>
</xp:this.converter>
</xp:inputText>
<xp:br></xp:br><xp:br></xp:br>